From 7f0440cc25fc3ebc711df9fb708a5bffe53bf784 Mon Sep 17 00:00:00 2001 From: Claudius Holeksa Date: Mon, 22 May 2023 00:37:33 +0200 Subject: c++: Initial setup for regular window creation --- src/window/SConscript | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/window/SConscript (limited to 'src/window/SConscript') 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")) -- cgit v1.2.3