blob: 3bacbbc135e63b4c910b05915f14041d0ecdd2f7 [file] [log] [blame]
Ben Murdoch097c5b22016-05-18 11:27:45 +01001# Copyright (c) 2015 Google Inc. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5{
6 'targets': [
7 {
8 'target_name': 'test-compile-as-managed',
9 'type': 'executable',
10 'msvs_settings': {
11 'VCCLCompilerTool': {
12 'CompileAsManaged': 'true',
13 'ExceptionHandling': '0' # /clr is incompatible with /EHs
14 }
15 },
16 'sources': ['compile-as-managed.cc'],
17 },
18 {
19 'target_name': 'test-compile-as-unmanaged',
20 'type': 'executable',
21 'msvs_settings': {
22 'VCCLCompilerTool': {
23 'CompileAsManaged': 'false',
24 }
25 },
26 'sources': ['compile-as-managed.cc'],
27 },
28 ]
29}