diff options
author | David Robillard <d@drobilla.net> | 2012-08-13 02:32:25 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-08-13 02:32:25 +0000 |
commit | ca660c8b407affd24802c43429b6341e76010660 (patch) | |
tree | 0f95b098b147f2e2fddcbe9b6059d07e6281239b | |
parent | d596ad7c12be64476afac95436a37813db014e69 (diff) | |
download | raul-ca660c8b407affd24802c43429b6341e76010660.tar.gz raul-ca660c8b407affd24802c43429b6341e76010660.tar.bz2 raul-ca660c8b407affd24802c43429b6341e76010660.zip |
Fix indentation.
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@4679 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | wscript | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -38,13 +38,13 @@ def options(opt): opt.load('compiler_cxx') autowaf.set_options(opt) opt.add_option('--test', action='store_true', default=False, dest='build_tests', - help="Build unit tests") + help="Build unit tests") opt.add_option('--log-colour', action='store_true', default=True, dest='log_colour', - help="Coloured console/log output") + help="Coloured console/log output") opt.add_option('--log-debug', action='store_true', default=False, dest='log_debug', - help="Print debugging output") + help="Print debugging output") opt.add_option('--cpp0x', action='store_true', default=False, dest='cpp0x', - help="Use C++0x smart pointers instead of boost") + help="Use C++0x smart pointers instead of boost") def configure(conf): conf.load('compiler_cxx') @@ -52,9 +52,9 @@ def configure(conf): conf.line_just = 40 autowaf.display_header('Raul Configuration') autowaf.check_pkg(conf, 'glib-2.0', atleast_version='2.2', - uselib_store='GLIB', mandatory=True) + uselib_store='GLIB', mandatory=True) autowaf.check_pkg(conf, 'gthread-2.0', atleast_version='2.14.0', - uselib_store='GTHREAD', mandatory=True) + uselib_store='GTHREAD', mandatory=True) if Options.platform == 'darwin': conf.check(framework_name='CoreServices') |