Home | History | Annotate | Download | only in gyp
      1 # target_defaults used for executable targets that generate a console app
      2 {
      3   'target_defaults': {
      4     'msvs_settings': {
      5       'VCLinkerTool': {
      6         #Allows for creation / output to console.
      7         #Console (/SUBSYSTEM:CONSOLE)
      8         'SubSystem': '1',
      9 
     10         #Console app, use main/wmain
     11         'EntryPointSymbol': 'mainCRTStartup',
     12       },
     13     },
     14   },
     15 }
     16 
     17 # Local Variables:
     18 # tab-width:2
     19 # indent-tabs-mode:nil
     20 # End:
     21 # vim: set expandtab tabstop=2 shiftwidth=2:
     22