diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2015-08-03 17:04:31 +0200 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2015-08-04 14:08:58 +0200 |
commit | e6053aa5475e03568f39e4967dc49ef4aba3c5fe (patch) | |
tree | 0b8fa3e3f5159f28210ff2c0611d8900d9577006 /macosx | |
parent | b44fe1c7af889089a640097583add8cd90e9330a (diff) | |
download | qtlocation-mapboxgl-e6053aa5475e03568f39e4967dc49ef4aba3c5fe.tar.gz |
Make build system architecture agnostic to remove Android special case
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/mapboxgl-app.gypi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/macosx/mapboxgl-app.gypi b/macosx/mapboxgl-app.gypi index 3b7d904a7d..589ae29bd5 100644 --- a/macosx/mapboxgl-app.gypi +++ b/macosx/mapboxgl-app.gypi @@ -35,14 +35,14 @@ 'variables' : { 'cflags_cc': [ '<@(boost_cflags)', - '<@(glfw3_cflags)', + '<@(glfw_cflags)', ], 'ldflags': [ '-framework SystemConfiguration', # For NSUserDefaults and Reachability - '<@(glfw3_ldflags)', + '<@(glfw_ldflags)', ], 'libraries': [ - '<@(glfw3_static_libs)', + '<@(glfw_static_libs)', ], }, |