diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2014-03-17 16:53:40 +0100 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2014-03-17 16:53:40 +0100 |
commit | 1f2c71ec8bc3b228db2d90751a5bae4e269e1dd4 (patch) | |
tree | ed6ff46cd6c0ef2f57a64ca584094fcde8dd65e3 /common.gypi | |
parent | 88af0b8b6c1558a832729f902e5abf9f46d97897 (diff) | |
download | qtlocation-mapboxgl-1f2c71ec8bc3b228db2d90751a5bae4e269e1dd4.tar.gz |
port of collision class
Diffstat (limited to 'common.gypi')
-rw-r--r-- | common.gypi | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/common.gypi b/common.gypi index a227e6d2c0..0498237585 100644 --- a/common.gypi +++ b/common.gypi @@ -9,16 +9,19 @@ 'cflags_cc': ['-std=c++11'], 'configurations': { 'Debug': { - 'cflags': [ '-g', '-O0' ], + 'cflags': [ '-g', '-O0', '-I<(boost_root)/include' ], 'defines': [ 'DEBUG' ], 'xcode_settings': { - 'OTHER_CPLUSPLUSFLAGS': [ '-g'] + 'OTHER_CPLUSPLUSFLAGS': [ '-g', '-I<(boost_root)/include' ] } }, 'Release': { - 'cflags': [ '-O3'], - 'defines': [ 'NDEBUG' ] + 'cflags': [ '-O3', '-I<(boost_root)/include' ], + 'defines': [ 'NDEBUG' ], + 'xcode_settings': { + 'OTHER_CPLUSPLUSFLAGS': [ '-I<(boost_root)/include' ] + } } } } -}
\ No newline at end of file +} |