From 36d4f4741cd2559362de7e64820ca4b29b022121 Mon Sep 17 00:00:00 2001 From: Cara Salter Date: Sat, 7 Jan 2023 23:24:04 -0500 Subject: Initial commit --- SConstruct | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 SConstruct (limited to 'SConstruct') 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) + -- cgit v1.2.3