Revert redundant kludge.
[ardour.git] / libs / evoral / wscript
index 19f045809d5f1e9778c8e7910503e6e9d9c05bbc..1d94e59e68685c8af04130c3e6b2bd55f641cf08 100644 (file)
@@ -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()