diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/wscript | 2 | ||||
-rw-r--r-- | src/wscript | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/wscript b/src/gui/wscript index 8e16937d..a23e2084 100644 --- a/src/gui/wscript +++ b/src/gui/wscript @@ -4,7 +4,7 @@ import waflib.Utils as Utils import waflib.Options as Options def options(ctx): - opt = ctx.get_option_group('Configuration options') + opt = ctx.configuration_options() opt.add_option('--light-theme', action='store_true', dest='light_theme', help='use light coloured theme') diff --git a/src/wscript b/src/wscript index 07379b83..464540af 100644 --- a/src/wscript +++ b/src/wscript @@ -37,8 +37,8 @@ def build(bld): export_includes = ['..'], includes = ['..'], name = 'libingen', - target = 'ingen', - vnum = '0.0.0', + target = 'ingen-%s' % bld.env.INGEN_MAJOR_VERSION, + vnum = bld.env.INGEN_VERSION, install_path = '${LIBDIR}', lib = lib, cxxflags = bld.env.PTHREAD_CFLAGS + bld.env.INGEN_TEST_CXXFLAGS, |