diff options
author | David Robillard <d@drobilla.net> | 2019-12-08 14:38:49 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-12-08 17:43:34 +0100 |
commit | 07821c99f75c574bff76cb6c7ceefa4f3d597140 (patch) | |
tree | e163bafe2f7e8012c0b98b0e4fa558c01f1905a2 /src/gui | |
parent | 6cc39a1ae4b407cbb1a5174d2adadfd90d28dee7 (diff) | |
download | ingen-07821c99f75c574bff76cb6c7ceefa4f3d597140.tar.gz ingen-07821c99f75c574bff76cb6c7ceefa4f3d597140.tar.bz2 ingen-07821c99f75c574bff76cb6c7ceefa4f3d597140.zip |
Cleanup: Format Python code to be mostly flake8 clean
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/wscript | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gui/wscript b/src/gui/wscript index a483f5a4..b33bd31e 100644 --- a/src/gui/wscript +++ b/src/gui/wscript @@ -1,13 +1,15 @@ #!/usr/bin/env python -import waflib.extras.autowaf as autowaf + import waflib.Utils as Utils import waflib.Options as Options + def options(ctx): opt = ctx.configuration_options() opt.add_option('--light-theme', action='store_true', dest='light_theme', help='use light coloured theme') + def configure(conf): conf.check_pkg('glibmm-2.4 >= 2.14.0', uselib_store='GLIBMM', @@ -36,6 +38,7 @@ def configure(conf): if Options.options.light_theme: conf.define('INGEN_USE_LIGHT_THEME', 1) + def build(bld): obj = bld(features = 'cxx cxxshlib', cflags = ['-fvisibility=hidden'], |