Index: test/win/compiler_flags/runtime-library.gyp |
diff --git a/test/win/compiler_flags/runtime-library.gyp b/test/win/compiler_flags/runtime-library.gyp |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f95573b7ee2717e7b24d04b41c871abf8c23c76e |
--- /dev/null |
+++ b/test/win/compiler_flags/runtime-library.gyp |
@@ -0,0 +1,60 @@ |
+# Copyright (c) 2012 Google Inc. All rights reserved. |
+# Use of this source code is governed by a BSD-style license that can be |
+# found in the LICENSE file. |
+ |
+{ |
+ 'targets': [ |
+ { |
+ 'target_name': 'test_rl_md', |
+ 'product_name': 'test_rl_md', |
+ 'type': 'executable', |
+ 'msvs_settings': { |
+ 'VCCLCompilerTool': { |
+ 'RuntimeLibrary': '2' |
+ } |
+ }, |
+ 'sources': [ |
+ 'runtime_library_md.cc' |
+ ] |
+ }, |
+ { |
+ 'target_name': 'test_rl_mdd', |
+ 'product_name': 'test_rl_mdd', |
+ 'type': 'executable', |
+ 'msvs_settings': { |
+ 'VCCLCompilerTool': { |
+ 'RuntimeLibrary': '3' |
+ } |
+ }, |
+ 'sources': [ |
+ 'runtime_library_mdd.cc' |
+ ] |
+ }, |
+ { |
+ 'target_name': 'test_rl_mt', |
+ 'product_name': 'test_rl_mt', |
+ 'type': 'executable', |
+ 'msvs_settings': { |
+ 'VCCLCompilerTool': { |
+ 'RuntimeLibrary': '0' |
+ } |
+ }, |
+ 'sources': [ |
+ 'runtime_library_mt.cc' |
+ ] |
+ }, |
+ { |
+ 'target_name': 'test_rl_mtd', |
+ 'product_name': 'test_rl_mtd', |
+ 'type': 'executable', |
+ 'msvs_settings': { |
+ 'VCCLCompilerTool': { |
+ 'RuntimeLibrary': '1' |
+ } |
+ }, |
+ 'sources': [ |
+ 'runtime_library_mtd.cc' |
+ ] |
+ }, |
+ ] |
+} |