diff options
author | Cara Salter <cara@devcara.com> | 2023-01-07 23:24:04 -0500 |
---|---|---|
committer | Cara Salter <cara@devcara.com> | 2023-01-07 23:24:04 -0500 |
commit | 36d4f4741cd2559362de7e64820ca4b29b022121 (patch) | |
tree | 172537aa08f946e2a6dc65bc4bec40985f6e1f95 /SConstruct | |
download | cpp-rl-master.tar.gz cpp-rl-master.zip |
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct new file mode 100644 index 0000000..38474cf --- /dev/null +++ b/SConstruct @@ -0,0 +1,9 @@ + +envDebug = Environment(CXXFLAGS='-g') + + + +targetDebug = envDebug.Program(target = 'cpp-rl-dbg', source=Glob('src/*.cpp'), LIBS=['ncurses', 'tinfo']) + +envDebug.Default(targetDebug) + |