summaryrefslogtreecommitdiff
path: root/deps/gyp/test/win/compiler-flags/runtime-library.gyp
blob: 04afc391c77c43f3f7ffc9ae01846f42402c06d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# 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',
      'type': 'executable',
      'msvs_settings': {
        'VCCLCompilerTool': {
          'RuntimeLibrary': '2'
        }
      },
      'sources': ['runtime-library-md.cc'],
    },
    {
      'target_name': 'test_rl_mdd',
      'type': 'executable',
      'msvs_settings': {
        'VCCLCompilerTool': {
          'RuntimeLibrary': '3'
        }
      },
      'sources': ['runtime-library-mdd.cc'],
    },
    {
      'target_name': 'test_rl_mt',
      'type': 'executable',
      'msvs_settings': {
        'VCCLCompilerTool': {
          'RuntimeLibrary': '0'
        }
      },
      'sources': ['runtime-library-mt.cc'],
    },
    {
      'target_name': 'test_rl_mtd',
      'type': 'executable',
      'msvs_settings': {
        'VCCLCompilerTool': {
          'RuntimeLibrary': '1'
        }
      },
      'sources': ['runtime-library-mtd.cc'],
    },
  ]
}