mirror of
https://github.com/mapbox/node-fontnik.git
synced 2025-12-08 20:16:18 +00:00
45 lines
1004 B
Python
45 lines
1004 B
Python
{
|
|
'target_defaults': {
|
|
'default_configuration': 'Release',
|
|
'cflags_cc' : [
|
|
'-std=c++14'
|
|
],
|
|
'cflags_cc!': ['-std=gnu++0x','-fno-rtti', '-fno-exceptions'],
|
|
'configurations': {
|
|
'Debug': {
|
|
'defines!': [
|
|
'NDEBUG'
|
|
],
|
|
'cflags_cc!': [
|
|
'-O3',
|
|
'-Os',
|
|
'-DNDEBUG'
|
|
],
|
|
'xcode_settings': {
|
|
'OTHER_CPLUSPLUSFLAGS!': [
|
|
'-O3',
|
|
'-Os',
|
|
'-DDEBUG'
|
|
],
|
|
'GCC_OPTIMIZATION_LEVEL': '0',
|
|
'GCC_GENERATE_DEBUGGING_SYMBOLS': 'YES'
|
|
}
|
|
},
|
|
'Release': {
|
|
'defines': [
|
|
'NDEBUG'
|
|
],
|
|
'xcode_settings': {
|
|
'OTHER_CPLUSPLUSFLAGS!': [
|
|
'-Os',
|
|
'-O2'
|
|
],
|
|
'GCC_OPTIMIZATION_LEVEL': '3',
|
|
'GCC_GENERATE_DEBUGGING_SYMBOLS': 'NO',
|
|
'DEAD_CODE_STRIPPING': 'YES',
|
|
'GCC_INLINES_ARE_PRIVATE_EXTERN': 'YES'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |