1{ 2 'targets': [{ 3 'target_name': "unit-http", 4 'cflags!': [ '-fno-exceptions' ], 5 'cflags_cc!': [ '-fno-exceptions' ], 6 'conditions': [ 7 ['OS=="mac"', { 8 'xcode_settings': { 9 'GCC_ENABLE_CPP_EXCEPTIONS': 'YES' 10 } 11 }] 12 ], 13 'sources': ["unit.cpp", "addon.cpp"], 14 'libraries': ["-lunit"] 15 }] 16} 17