bgfx/3rdparty/glsl-optimizer/target_defaults.gypi

29 lines
469 B
Text
Raw Normal View History

2014-02-11 02:06:13 -05:00
{
'target_defaults': {
'configurations': {
'Debug': {
'defines': [
'DEBUG',
'_DEBUG',
],
},
'Release': {
'defines': [
'NDEBUG',
],
},
},
'conditions': [
['OS=="win"', {
'target_defaults': {
'msvs_settings': {
'VCCLCompilerTool': {
'ExceptionHandling': '0',
},
},
},
}],
],
}
}