diff options
author | David Robillard <d@drobilla.net> | 2011-02-22 04:18:19 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-02-22 04:18:19 +0000 |
commit | 292f32b8932227e010f059de00a7df7c3b3b2a8d (patch) | |
tree | dae51eae0f0f9af4c9bdf9e512bb01fbda20a80e /wscript | |
parent | b2a6120d19163cdca60565d3c26d71cf95d97230 (diff) | |
download | suil-292f32b8932227e010f059de00a7df7c3b3b2a8d.tar.gz suil-292f32b8932227e010f059de00a7df7c3b3b2a8d.tar.bz2 suil-292f32b8932227e010f059de00a7df7c3b3b2a8d.zip |
Add autowaf.
git-svn-id: http://svn.drobilla.net/lad/trunk/suil@3004 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -9,7 +9,7 @@ import shutil import subprocess # Version of this package (even if built as a child) -SUIL_VERSION = '0.1.0' +SUIL_VERSION = '0.0.0' # Library version (UNIX style major, minor, micro) # major increment <=> incompatible changes @@ -30,7 +30,7 @@ def options(opt): autowaf.set_options(opt) def configure(conf): - conf.line_just = max(conf.line_just, 59) + conf.line_just = max(conf.line_just, 40) autowaf.configure(conf) autowaf.display_header('Suil Configuration') @@ -52,7 +52,7 @@ def build(bld): # Library obj = bld(features = 'c cshlib') obj.export_includes = ['.'] - obj.source = 'src/suil.c' + obj.source = 'src/uis.c' obj.includes = ['.', './src'] obj.name = 'libsuil' obj.target = 'suil' |