summaryrefslogtreecommitdiff
path: root/libs/evoral/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-02-07 07:19:02 +0000
committerDavid Robillard <d@drobilla.net>2009-02-07 07:19:02 +0000
commit424b38790ae9d13ae6735ffc07be05ae55440706 (patch)
treedbd013dc5065fc360c16c870c8a1f9821df390a9 /libs/evoral/wscript
parent446b214b46e5cc61987286868e484458193e3ea1 (diff)
Revert redundant kludge.
git-svn-id: svn://localhost/ardour2/branches/3.0@4498 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/evoral/wscript')
-rw-r--r--libs/evoral/wscript10
1 files changed, 0 insertions, 10 deletions
diff --git a/libs/evoral/wscript b/libs/evoral/wscript
index 19f045809d..1d94e59e68 100644
--- a/libs/evoral/wscript
+++ b/libs/evoral/wscript
@@ -16,13 +16,6 @@ EVORAL_LIB_VERSION = '0.0.0'
APPNAME = 'evoral'
VERSION = EVORAL_VERSION
-# Custom variables
-DEBUG = True
-if DEBUG:
- cxxflags = '-g'
-else:
- cxxflags = ''
-
# Mandatory variables
srcdir = '.'
blddir = 'build'
@@ -65,7 +58,6 @@ def build(bld):
obj.target = 'evoral'
obj.uselib = 'GLIBMM GTHREAD'
obj.vnum = EVORAL_LIB_VERSION
- obj.cxxflags = cxxflags
obj.install_path = ''
# Unit tests
@@ -78,10 +70,8 @@ def build(bld):
obj.uselib_local = 'libevoral'
obj.uselib = 'CPPUNIT'
obj.target = 'run-tests'
- obj.cxxflags = cxxflags
obj.install_path = ''
-
def shutdown():
autowaf.shutdown()