summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-10-17 13:03:02 +0200
committerDavid Robillard <d@drobilla.net>2019-10-17 13:03:02 +0200
commit69623bbe00a9d186f8fdb8921b70acadf8ba6465 (patch)
treeba35c7209302660845d42d638095d0e262aff774 /src
parent78d0b5abe0f498ce413f54c2e9adcc2af1dc1e7d (diff)
downloadingen-69623bbe00a9d186f8fdb8921b70acadf8ba6465.tar.gz
ingen-69623bbe00a9d186f8fdb8921b70acadf8ba6465.tar.bz2
ingen-69623bbe00a9d186f8fdb8921b70acadf8ba6465.zip
Remove use of autowaf.define
Diffstat (limited to 'src')
-rw-r--r--src/gui/wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/wscript b/src/gui/wscript
index c34731ba..ba0026ef 100644
--- a/src/gui/wscript
+++ b/src/gui/wscript
@@ -22,10 +22,10 @@ def configure(conf):
atleast_version='1.4.0', system=True, mandatory=False)
if conf.env.HAVE_GANV and conf.env.HAVE_GTKMM:
- autowaf.define(conf, 'INGEN_BUILD_GUI', 1)
+ conf.env.INGEN_BUILD_GUI = 1
if Options.options.light_theme:
- autowaf.define(conf, 'INGEN_USE_LIGHT_THEME', 1)
+ conf.define('INGEN_USE_LIGHT_THEME', 1)
def build(bld):
obj = bld(features = 'cxx cxxshlib',