From adb80a7176deb715448c7f5a2ea827ff5173b018 Mon Sep 17 00:00:00 2001 From: "David J. Allen" Date: Sat, 17 Aug 2024 21:28:02 -0600 Subject: [PATCH] Added initial SConstruct --- SConstruct | 1 + 1 file changed, 1 insertion(+) diff --git a/SConstruct b/SConstruct index deadc3b..7dac6ec 100644 --- a/SConstruct +++ b/SConstruct @@ -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)