| Index: test/win/linker_flags/subsystem.gyp
|
| diff --git a/test/win/linker_flags/subsystem.gyp b/test/win/linker_flags/subsystem.gyp
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..1e36fceb520a440e508d4a3fba29cce6ccaae9f6
|
| --- /dev/null
|
| +++ b/test/win/linker_flags/subsystem.gyp
|
| @@ -0,0 +1,34 @@
|
| +# 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_subsystem_console',
|
| + 'product_name': 'test_subsystem_console',
|
| + 'type': 'executable',
|
| + 'msvs_settings': {
|
| + 'VCLinkerTool': {
|
| + 'SubSystem': '1'
|
| + }
|
| + },
|
| + 'sources': [
|
| + 'hello.cc'
|
| + ]
|
| + },
|
| + {
|
| + 'target_name': 'test_subsystem_windows',
|
| + 'product_name': 'test_subsystem_windows',
|
| + 'type': 'executable',
|
| + 'msvs_settings': {
|
| + 'VCLinkerTool': {
|
| + 'SubSystem': '2'
|
| + }
|
| + },
|
| + 'sources': [
|
| + 'hello.cc'
|
| + ]
|
| + },
|
| + ]
|
| +}
|
|
|