summaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.py b/configure.py
index 1cdab49..ed05031 100755
--- a/configure.py
+++ b/configure.py
@@ -254,6 +254,7 @@ for name in ['build',
if platform in ('mingw', 'windows'):
objs += cxx('subprocess-win32')
if platform == 'windows':
+ objs += cxx('includes_normalize-win32')
objs += cxx('msvc_helper-win32')
objs += cxx('minidump-win32')
objs += cc('getopt')
@@ -325,7 +326,8 @@ for name in ['build_log_test',
'util_test']:
objs += cxx(name, variables=[('cflags', test_cflags)])
if platform == 'windows':
- objs += cxx('msvc_helper_test', variables=[('cflags', test_cflags)])
+ for name in ['includes_normalize_test', 'msvc_helper_test']:
+ objs += cxx(name, variables=[('cflags', test_cflags)])
if platform != 'mingw' and platform != 'windows':
test_libs.append('-lpthread')