summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/window-vulkan/SConstruct17
1 files changed, 14 insertions, 3 deletions
diff --git a/modules/window-vulkan/SConstruct b/modules/window-vulkan/SConstruct
index 5bc2d58..757f474 100644
--- a/modules/window-vulkan/SConstruct
+++ b/modules/window-vulkan/SConstruct
@@ -51,9 +51,20 @@ env_vars.Add(
);
-env=Environment(ENV=os.environ, variables=env_vars, CPPPATH=[],
- CPPDEFINES=['SAW_UNIX', 'SAW_UNIX_XCB'],
- CXXFLAGS=['-std=c++20','-g','-Wall','-Wextra'],
+env=Environment(
+ ENV=os.environ,
+ variables=env_vars,
+ CPPPATH=[],
+ CPPDEFINES=[
+ 'SAW_UNIX'
+ ,'SAW_UNIX_XCB'
+ ],
+ CXXFLAGS=[
+ '-std=c++20'
+ ,'-g'
+ ,'-Wall'
+ ,'-Wextra'
+ ],
LIBS=[
'forstio-core'
,'forstio-io'