summaryrefslogtreecommitdiff
path: root/deps/gyp/test/win/compiler-flags/treat-wchar-t-as-built-in-type.gyp
blob: 456fe047d04fb1a8be865d81556a099129f1b34f (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
# Copyright (c) 2010 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_treat_wchar_t_as_built_in_type_negative',
      'type': 'executable',
      'msvs_settings': {
        'VCCLCompilerTool': {
          'TreatWChar_tAsBuiltInType': 'false',
        },
      },
      'sources': [
        'treat-wchar-t-as-built-in-type1.cc',
      ],
    },
    {
      'target_name': 'test_treat_wchar_t_as_built_in_type_positive',
      'type': 'executable',
      'msvs_settings': {
        'VCCLCompilerTool': {
          'TreatWChar_tAsBuiltInType': 'true',
        },
      },
      'sources': [
        'treat-wchar-t-as-built-in-type2.cc',
      ],
    },

  ],
}