Sha256: d365d245f00002d45f1c6173a335760a761e1fde1332ea293a17c24e81601cfd

Contents?: true

Size: 1.98 KB

Versions: 5

Compression:

Stored size: 1.98 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': 'with_resources',
      'type': 'executable',
      'msvs_settings': {
        'VCCLCompilerTool': {
          'DebugInformationFormat': '3',
        },
        'VCLinkerTool': {
          'GenerateDebugInformation': 'true',
        },
        'VCResourceCompilerTool': {
          'Culture' : '1033',
        },
      },
      'sources': [
        'hello.cpp',
        'hello.rc',
      ],
      'libraries': [
        'kernel32.lib',
        'user32.lib',
      ],
    },
    {
      'target_name': 'with_resources_subdir',
      'type': 'executable',
      'msvs_settings': {
        'VCCLCompilerTool': {
          'DebugInformationFormat': '3',
        },
        'VCLinkerTool': {
          'GenerateDebugInformation': 'true',
        },
        'VCResourceCompilerTool': {
          'Culture' : '1033',
        },
      },
      'sources': [
        'hello.cpp',
        'subdir/hello2.rc',
      ],
      'libraries': [
        'kernel32.lib',
        'user32.lib',
      ],
    },
    {
      'target_name': 'with_include_subdir',
      'type': 'executable',
      'msvs_settings': {
        'VCCLCompilerTool': {
          'DebugInformationFormat': '3',
        },
        'VCLinkerTool': {
          'GenerateDebugInformation': 'true',
        },
        'VCResourceCompilerTool': {
          'Culture' : '1033',
        },
      },
      'resource_include_dirs': [
        '$(ProjectDir)\\subdir',
      ],
      'sources': [
        'hello.cpp',
        'hello3.rc',
      ],
      'libraries': [
        'kernel32.lib',
        'user32.lib',
      ],
    },
    {
      'target_name': 'resource_only_dll',
      'type': 'shared_library',
      'msvs_settings': {
        'VCLinkerTool': {
          'ResourceOnlyDLL': 'true',
        },
      },
      'sources': [
        'hello.rc',
      ],
    },
  ],
}

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
mt-libuv-4.1.04 ext/gyp/test/win/rc-build/hello.gyp
mt-libuv-4.1.03 ext/gyp/test/win/rc-build/hello.gyp
mt-libuv-4.1.02 ext/gyp/test/win/rc-build/hello.gyp
tree-sitter-0.1.0 ext/tree-sitter/tree-sitter/externals/gyp/test/win/rc-build/hello.gyp
tree-sitter-0.0.1 ext/tree-sitter/tree-sitter/externals/gyp/test/win/rc-build/hello.gyp