diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2015-01-23 18:52:29 +0100 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2015-02-04 10:49:07 +0100 |
commit | 704b3719f5acfe2291c5976bf8c0935bb9523f5a (patch) | |
tree | 3cab33639d9edcc3df676e68e6acd7027d78e6a6 /linux | |
parent | a67219ab8bf9e03b3365cd8612f5c40a64392e40 (diff) | |
download | qtlocation-mapboxgl-704b3719f5acfe2291c5976bf8c0935bb9523f5a.tar.gz |
use standard DEBUG macro rather than NDEBUG
Diffstat (limited to 'linux')
-rw-r--r-- | linux/mapboxgl-app.gyp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linux/mapboxgl-app.gyp b/linux/mapboxgl-app.gyp index e7db26f2b7..abc3db6ad8 100644 --- a/linux/mapboxgl-app.gyp +++ b/linux/mapboxgl-app.gyp @@ -23,7 +23,7 @@ ], 'variables' : { - 'cxxflags': [ + 'cflags_cc': [ '<@(glfw3_cflags)', ], 'ldflags': [ @@ -38,11 +38,11 @@ 'conditions': [ ['OS == "mac"', { 'xcode_settings': { - 'OTHER_CPLUSPLUSFLAGS': [ '<@(cxxflags)' ], + 'OTHER_CPLUSPLUSFLAGS': [ '<@(cflags_cc)' ], 'OTHER_LDFLAGS': [ '<@(ldflags)' ], } }, { - 'cxxflags': [ '<@(cxxflags)' ], + 'cflags_cc': [ '<@(cflags_cc)' ], 'ldflags': [ '<@(ldflags)' ], }] ], |