forstio/driver/SConscript

16 lines
283 B
Python
Raw Normal View History

2020-08-25 19:51:45 +02:00
#!/bin/false
import os
import os.path
import glob
Import('env')
dir_path = Dir('.').abspath
env.driver_sources += sorted(glob.glob(dir_path + "/tls/*.cpp"))
env.driver_sources += sorted(glob.glob(dir_path + "/*.cpp"))
env.driver_headers += sorted(glob.glob(dir_path + "/*.h"))