forstio/source/forstio/SConscript

17 lines
326 B
Python
Raw Permalink Normal View History

2020-07-27 17:13:05 +02:00
#!/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"))
2021-06-18 00:17:18 +02:00
env.tls_sources += sorted(glob.glob(dir_path + "/tls/*.cpp"))
env.tls_headers += sorted(glob.glob(dir_path + "/tls/*.h"))