summaryrefslogtreecommitdiff
path: root/deps/gyp/test/win/compiler-flags/character-set.gyp
blob: 3dc45557d9ba689f5b7e1bb02745773c2cf37ff9 (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
# 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_cs_notset',
      'product_name': 'test_cs_notset',
      'type': 'executable',
      'msvs_configuration_attributes': {
        'CharacterSet': '0'
      },
      'sources': ['hello.cc'],
    },
    {
      'target_name': 'test_cs_unicode',
      'product_name': 'test_cs_unicode',
      'type': 'executable',
      'msvs_configuration_attributes': {
        'CharacterSet': '1'
      },
      'sources': ['character-set-unicode.cc'],
    },
    {
      'target_name': 'test_cs_mbcs',
      'product_name': 'test_cs_mbcs',
      'type': 'executable',
      'msvs_configuration_attributes': {
        'CharacterSet': '2'
      },
      'sources': ['character-set-mbcs.cc'],
    },
  ]
}