blob: 8a044097662814d81179853d02c889bf8edb8b43 [file] [log] [blame]
# 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': 'with_resources',
'type': 'executable',
'msvs_settings': {
'VCCLCompilerTool': {
'DebugInformationFormat': '3',
},
'VCLinkerTool': {
'GenerateDebugInformation': 'true',
},
'VCResourceCompilerTool': {
'Culture' : '1033',
},
},
'sources': [
'hello.cpp',
'hello.rc',
],
},
{
'target_name': 'with_resources_subdir',
'type': 'executable',
'msvs_settings': {
'VCCLCompilerTool': {
'DebugInformationFormat': '3',
},
'VCLinkerTool': {
'GenerateDebugInformation': 'true',
},
'VCResourceCompilerTool': {
'Culture' : '1033',
},
},
'sources': [
'hello.cpp',
'subdir/hello2.rc',
],
},
{
'target_name': 'resource_only_dll',
'type': 'shared_library',
'msvs_settings': {
'VCLinkerTool': {
'ResourceOnlyDLL': 'true',
},
},
'sources': [
'hello.rc',
],
},
],
}