summaryrefslogtreecommitdiff
path: root/c++/window-opengl
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2023-08-16 01:18:10 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2023-08-16 01:18:10 +0200
commit27c66aeb20a3338f185e0df172bc11e837a30a93 (patch)
tree0c75c9f7625e8a8e3c100f7ff384745f06aec87f /c++/window-opengl
parent9b5ca88b97c3a00153946920ae52870c452fb4a1 (diff)
c++,window,window-opengl: Fixing missing functions and other minor
quirks
Diffstat (limited to 'c++/window-opengl')
-rw-r--r--c++/window-opengl/SConstruct8
1 files changed, 7 insertions, 1 deletions
diff --git a/c++/window-opengl/SConstruct b/c++/window-opengl/SConstruct
index 42fb205..fc2c398 100644
--- a/c++/window-opengl/SConstruct
+++ b/c++/window-opengl/SConstruct
@@ -46,7 +46,13 @@ env_vars.Add('prefix',
env=Environment(ENV=os.environ, variables=env_vars, CPPPATH=[],
CPPDEFINES=['SAW_UNIX', 'SAW_UNIX_XCB', 'SAW_OGL'],
CXXFLAGS=['-std=c++20','-g','-Wall','-Wextra'],
- LIBS=['forstio-core', 'forstio-io', 'forstio-async', 'forstio-codec'])
+ LIBS=[
+ 'forstio-core',
+ 'forstio-io',
+ 'forstio-async',
+ 'forstio-codec'
+ ]
+);
env.__class__.add_source_files = add_kel_source_files
env.Tool('compilation_db');
env.cdb = env.CompilationDatabase('compile_commands.json');