diff options
author | Evan Martin <martine@danga.com> | 2012-08-24 18:20:55 (GMT) |
---|---|---|
committer | Evan Martin <martine@danga.com> | 2012-08-24 18:20:55 (GMT) |
commit | 50b122e5743a738ddf636fdccaa4b6712508ea7d (patch) | |
tree | 0e7a9642787e87bf7065dc693fbf94e70dd1f8a1 /configure.py | |
parent | 73f646f122f6bd9a09a105dc995e14161a027345 (diff) | |
download | Ninja-50b122e5743a738ddf636fdccaa4b6712508ea7d.zip Ninja-50b122e5743a738ddf636fdccaa4b6712508ea7d.tar.gz Ninja-50b122e5743a738ddf636fdccaa4b6712508ea7d.tar.bz2 |
windows: pass /Zi to gtest compile as well
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py index e4b9eb4..bd50e67 100755 --- a/configure.py +++ b/configure.py @@ -320,7 +320,7 @@ if options.with_gtest: gtest_all_incs = '-I%s -I%s' % (path, os.path.join(path, 'include')) if platform == 'windows': - gtest_cflags = '/nologo /EHsc ' + gtest_all_incs + gtest_cflags = '/nologo /EHsc /Zi ' + gtest_all_incs else: gtest_cflags = '-fvisibility=hidden ' + gtest_all_incs objs += n.build(built('gtest-all' + objext), 'cxx', |