Sha256: 50ade4cbd1b7cf7ddd495bc4c8926d1b244ccc8e3318037461b8b696826b6a07
Contents?: true
Size: 1.09 KB
Versions: 44
Compression:
Stored size: 1.09 KB
Contents
# 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-debug-format-off', 'type': 'executable', 'msvs_settings': { 'VCCLCompilerTool': { 'DebugInformationFormat': '0' } }, 'sources': ['hello.cc'], }, { 'target_name': 'test-debug-format-oldstyle', 'type': 'executable', 'msvs_settings': { 'VCCLCompilerTool': { 'DebugInformationFormat': '1' } }, 'sources': ['hello.cc'], }, { 'target_name': 'test-debug-format-pdb', 'type': 'executable', 'msvs_settings': { 'VCCLCompilerTool': { 'DebugInformationFormat': '3' } }, 'sources': ['hello.cc'], }, { 'target_name': 'test-debug-format-editcontinue', 'type': 'executable', 'msvs_settings': { 'VCCLCompilerTool': { 'DebugInformationFormat': '4' } }, 'sources': ['hello.cc'], }, ] }
Version data entries
44 entries across 44 versions & 7 rubygems