aboutsummaryrefslogtreecommitdiffhomepage
path: root/gyp/apptype_console.gypi
blob: b686fa71ef799e307074486ead3c9ccf64f03c43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# target_defaults used for executable targets that generate a console app
{
  'target_defaults': {
    'mac_bundle' : 1,
    'msvs_settings': {
      'VCLinkerTool': {
        #Allows for creation / output to console.
        #Console (/SUBSYSTEM:CONSOLE)
        'SubSystem': '1',

        #Console app, use main/wmain
        'EntryPointSymbol': 'mainCRTStartup',

        'AdditionalDependencies': [
          'OpenGL32.lib',
          'usp10.lib',
        ],
      },
    },
  },
}

# Local Variables:
# tab-width:2
# indent-tabs-mode:nil
# End:
# vim: set expandtab tabstop=2 shiftwidth=2: