diff options
author | David Robillard <d@drobilla.net> | 2011-03-15 22:46:13 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-03-15 22:46:13 +0000 |
commit | ab605d3603d309e40995c9e22531f48facddf9c3 (patch) | |
tree | ede5c6645523d84bc882d981ce20b494875df772 | |
parent | 0b870e37890c3e9814d370c399dbe21b62a263b7 (diff) | |
download | serd-ab605d3603d309e40995c9e22531f48facddf9c3.tar.gz serd-ab605d3603d309e40995c9e22531f48facddf9c3.tar.bz2 serd-ab605d3603d309e40995c9e22531f48facddf9c3.zip |
Remove INSTALL and waf (broken intermediary commit).
Update wscript for new waf with included autowaf.
git-svn-id: http://svn.drobilla.net/serd/trunk@121 490d8e77-9747-427b-9fa3-0b8f29cee8a0
l--------- | INSTALL | 1 | ||||
l--------- | waf | 1 | ||||
-rw-r--r-- | wscript | 8 |
3 files changed, 4 insertions, 6 deletions
diff --git a/INSTALL b/INSTALL deleted file mode 120000 index 4d35fcc7..00000000 --- a/INSTALL +++ /dev/null @@ -1 +0,0 @@ -autowaf/INSTALL
\ No newline at end of file @@ -1 +0,0 @@ -autowaf/waf
\ No newline at end of file @@ -1,13 +1,13 @@ #!/usr/bin/env python -import Logs -import Options -import autowaf import filecmp import glob import os import shutil import subprocess +import waflib.Logs as Logs, waflib.Options as Options +from waflib.extras import autowaf as autowaf + # Version of this package (even if built as a child) SERD_VERSION = '0.1.0' @@ -40,7 +40,7 @@ def configure(conf): autowaf.configure(conf) autowaf.display_header('Serd Configuration') - conf.check_tool('compiler_cc') + conf.load('compiler_cc') conf.env.append_value('CFLAGS', '-std=c99') conf.env['BUILD_TESTS'] = Options.options.build_tests |