| 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..991bb7abb48dc7fa8c337bd2f39f184988c2da47
|
| --- /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': [
|
| + 'hello.cc'
|
| + ]
|
| + },
|
| + {
|
| + 'target_name': 'test_rl_mdd',
|
| + 'product_name': 'test_rl_mdd',
|
| + 'type': 'executable',
|
| + 'msvs_settings': {
|
| + 'VCCLCompilerTool': {
|
| + 'RuntimeLibrary': '3'
|
| + }
|
| + },
|
| + 'sources': [
|
| + 'hello.cc'
|
| + ]
|
| + },
|
| + {
|
| + 'target_name': 'test_rl_mt',
|
| + 'product_name': 'test_rl_mt',
|
| + 'type': 'executable',
|
| + 'msvs_settings': {
|
| + 'VCCLCompilerTool': {
|
| + 'RuntimeLibrary': '0'
|
| + }
|
| + },
|
| + 'sources': [
|
| + 'hello.cc'
|
| + ]
|
| + },
|
| + {
|
| + 'target_name': 'test_rl_mtd',
|
| + 'product_name': 'test_rl_mtd',
|
| + 'type': 'executable',
|
| + 'msvs_settings': {
|
| + 'VCCLCompilerTool': {
|
| + 'RuntimeLibrary': '1'
|
| + }
|
| + },
|
| + 'sources': [
|
| + 'hello.cc'
|
| + ]
|
| + },
|
| + ]
|
| +}
|
|
|