forstio-window/source/forstio/window/SConscript

17 lines
322 B
Python

#!/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"))