summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct9
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)
+