diff options
Diffstat (limited to 'common.gypi')
-rw-r--r-- | common.gypi | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/common.gypi b/common.gypi index a9e700c7b2..55aaad9d9e 100644 --- a/common.gypi +++ b/common.gypi @@ -9,18 +9,15 @@ 'cflags':['-std=c++11'], 'configurations': { 'Debug': { - 'cflags': [ '-g', '-O0', '-I<(boost_root)/include' ], + 'cflags': [ '-g', '-O0' ], 'defines': [ 'DEBUG' ], 'xcode_settings': { - 'OTHER_CPLUSPLUSFLAGS': [ '-g', '-I<(boost_root)/include' ] + 'OTHER_CPLUSPLUSFLAGS': [ '-g'] } }, 'Release': { - 'cflags': [ '-O3', '-I<(boost_root)/include' ], - 'defines': [ 'NDEBUG' ], - 'xcode_settings': { - 'OTHER_CPLUSPLUSFLAGS': [ '-I<(boost_root)/include' ] - } + 'cflags': [ '-O3'], + 'defines': [ 'NDEBUG' ] } } } |