diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-12-24 13:53:07 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-12-24 14:17:26 +0100 |
| commit | 7f449b7d1bd94c7de1db09cf1cc7af674bd94f25 (patch) | |
| tree | edf24364e8730daa0cbf93841a9e5597db00cd86 /src/wscript | |
| parent | dda2955713196b56265bd23fd1c36d15a1eae6cc (diff) | |
Remove unnecessary distinction between 32-bit and 64-bit Windows.
Diffstat (limited to 'src/wscript')
| -rw-r--r-- | src/wscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wscript b/src/wscript index 5773ad1..102a196 100644 --- a/src/wscript +++ b/src/wscript @@ -9,8 +9,8 @@ def configure(conf): else: major_minor = '0.0.0' conf.env.append_value('CXXFLAGS', ['-DPACKAGE_VERSION="%s"' % major_minor]) - if conf.options.target_windows_64 or conf.options.target_windows_32: conf.env.append_value('CXXFLAGS', ['-DASDCP_PLATFORM="win32"', '-DKM_WIN32', '-DWIN32_LEAN_AND_MEAN']) + if conf.options.target_windows: else: conf.env.append_value('CXXFLAGS', '-DASDCP_PLATFORM="linux"') |
