Added initial SConstruct

This commit is contained in:
David Allen 2024-08-17 21:28:02 -06:00
parent defbc079cd
commit adb80a7176
Signed by: towk
GPG key ID: 793B2924A49B3A3F

View file

@ -9,6 +9,7 @@ base_name = "gdpm"
include_files = Glob('include/*.hpp')
source_files = Glob('src/*.cpp')
test_files = Glob('tests/*.cpp')
compile_flags = ""
# build the main executable and tests
env.Program(f'{base_name}', source_files)