diff options
author | Claudius Holeksa <mail@keldu.de> | 2023-05-22 00:37:33 +0200 |
---|---|---|
committer | Claudius Holeksa <mail@keldu.de> | 2023-05-22 00:37:33 +0200 |
commit | 7f0440cc25fc3ebc711df9fb708a5bffe53bf784 (patch) | |
tree | 8de4c18388b258f7af3b268b534723da48ce1616 /src/window/SConscript | |
parent | a93b825968d6da81200bbda00ece1371f0f7945e (diff) |
c++: Initial setup for regular window creation
Diffstat (limited to 'src/window/SConscript')
-rw-r--r-- | src/window/SConscript | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/window/SConscript b/src/window/SConscript new file mode 100644 index 0000000..789b3aa --- /dev/null +++ b/src/window/SConscript @@ -0,0 +1,16 @@ +#!/bin/false + +import os +import os.path +import glob + + +Import('env') + +dir_path = Dir('.').abspath + +env.sources += sorted(glob.glob(dir_path + "/*.cpp")) +env.headers += sorted(glob.glob(dir_path + "/*.h")) + +env.gl_sources += sorted(glob.glob(dir_path + "/gl/*.cpp")) +env.gl_headers += sorted(glob.glob(dir_path + "/gl/*.h")) |