зеркало из https://github.com/mozilla/moz-skia.git
23 строки
498 B
Plaintext
23 строки
498 B
Plaintext
|
# 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',
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
|
||
|
# Local Variables:
|
||
|
# tab-width:2
|
||
|
# indent-tabs-mode:nil
|
||
|
# End:
|
||
|
# vim: set expandtab tabstop=2 shiftwidth=2:
|