diff options
Diffstat (limited to 'src/ingen/wscript')
-rw-r--r-- | src/ingen/wscript | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/ingen/wscript b/src/ingen/wscript new file mode 100644 index 00000000..d2e42c51 --- /dev/null +++ b/src/ingen/wscript @@ -0,0 +1,11 @@ +#!/usr/bin/env python + +def build(bld): + obj = bld.create_obj('cpp', 'program') + obj.target = 'ingen' + obj.source = 'main.cpp cmdline.c' + obj.includes = ['.', '../../common', '../..', '../../libs'] + obj.defines = 'VERSION=\\\"' + bld.env()['INGEN_VERSION'] + '\\\"' + obj.uselib = 'GTHREAD GLIBMM REDLANDMM RAUL SLV2 INGEN LIBLO' + obj.uselib_local = 'libingen_module libingen_shared' + |