summaryrefslogtreecommitdiff
path: root/drivers/SCsub
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/SCsub')
-rw-r--r--drivers/SCsub20
1 files changed, 7 insertions, 13 deletions
diff --git a/drivers/SCsub b/drivers/SCsub
index 583973c025..932014b540 100644
--- a/drivers/SCsub
+++ b/drivers/SCsub
@@ -24,19 +24,15 @@ SConscript('winmidi/SCsub')
# Graphics drivers
if (env["platform"] != "server"):
- SConscript('gles3/SCsub')
- SConscript('gles2/SCsub')
+# SConscript('gles2/SCsub')
+ SConscript('vulkan/SCsub')
SConscript('gl_context/SCsub')
else:
SConscript('dummy/SCsub')
# Core dependencies
SConscript("png/SCsub")
-
-# Tools override
-# FIXME: Should likely be integrated in the tools/ codebase
-if env['tools']:
- SConscript("convex_decomp/SCsub")
+SConscript("spirv-reflect/SCsub")
if env['vsproj']:
import os
@@ -46,9 +42,7 @@ if env['vsproj']:
env.AddToVSProject(env.drivers_sources)
os.chdir(path)
-if env.split_drivers:
- env.split_lib("drivers")
-else:
- env.add_source_files(env.drivers_sources, "*.cpp")
- lib = env.add_library("drivers", env.drivers_sources)
- env.Prepend(LIBS=[lib])
+env.add_source_files(env.drivers_sources, "*.cpp")
+
+lib = env.add_library("drivers", env.drivers_sources)
+env.Prepend(LIBS=[lib])