diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-08-03 00:00:39 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-08-03 00:00:39 +0100 |
| commit | 894f567beaabb43cf96651e61c29d04f3e02ae50 (patch) | |
| tree | db7fa032270d88fabfe0e4819e48ab2e68a93150 /wscript | |
| parent | bd540e569b65e4949aac80b988bfa421a0be90e6 (diff) | |
A bit of tidying up; don't build player ever for now; add -c option to makedcp to output configuration information.
Diffstat (limited to 'wscript')
| -rw-r--r-- | wscript | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -24,6 +24,9 @@ def configure(conf): conf.env.append_value('CXXFLAGS', ['-D__STDC_CONSTANT_MACROS', '-msse', '-mfpmath=sse', '-ffast-math', '-fno-strict-aliasing', '-Wall', '-Wno-attributes']) conf.env.append_value('CXXFLAGS', ['-DDVDOMATIC_VERSION="%s"' % VERSION]) + # Turn off player for now + conf.options.disable_player = True + if conf.options.target_windows: conf.env.append_value('CXXFLAGS', ['-DDVDOMATIC_WINDOWS', '-DWIN32_LEAN_AND_MEAN']) conf.options.disable_player = True @@ -45,7 +48,7 @@ def configure(conf): conf.env.append_value('CXXFLAGS', '-DDVDOMATIC_DISABLE_PLAYER') if conf.options.enable_debug: - conf.env.append_value('CXXFLAGS', '-g') + conf.env.append_value('CXXFLAGS', ['-g', '-DDVDOMATIC_DEBUG']) else: conf.env.append_value('CXXFLAGS', '-O3') |
