diff options
author | Bruno de Oliveira Abinader <bruno@mapbox.com> | 2017-07-13 14:24:23 +0300 |
---|---|---|
committer | Bruno de Oliveira Abinader <bruno@mapbox.com> | 2017-07-13 14:59:06 +0300 |
commit | d0be2ed2a6876226c99591ddf1cde0f9fc85580c (patch) | |
tree | fe7b888fc8593af753621db2e04003c7c9997d0f | |
parent | 73869d12dd2e651b09a158a3cbd6100801b5c397 (diff) | |
download | qtlocation-mapboxgl-d0be2ed2a6876226c99591ddf1cde0f9fc85580c.tar.gz |
[build] Update GLFW to 2017-07-13-67c9155
-rw-r--r-- | cmake/glfw.cmake | 11 | ||||
-rw-r--r-- | platform/linux/config.cmake | 2 | ||||
-rw-r--r-- | platform/macos/config.cmake | 2 |
3 files changed, 2 insertions, 13 deletions
diff --git a/cmake/glfw.cmake b/cmake/glfw.cmake index 8e001abb27..3dca089c14 100644 --- a/cmake/glfw.cmake +++ b/cmake/glfw.cmake @@ -10,17 +10,6 @@ target_sources(mbgl-glfw PRIVATE platform/default/mbgl/util/default_styles.hpp ) -# Our GL implementation is internal to mbgl-core, which causes the GL header to -# be included after GLFW's own header. They both attempt to define GLAPIENTRY, -# but unfortunately the GL header doesn't check if it was previously defined, -# causing a macro redefinition compiler error. -# There is no particular compiler warning flag to ignore this check on GCC -# neither it does accept ignoring '-Werror' via diagnostics pragmas. We can -# only suppress this by either replacing the header path inclusion from -I to -# -isystem, or completely suppressing errors. Until the former solution is not -# available, we'll suppress the errors from that definition file. -set_source_files_properties(platform/glfw/glfw_view.cpp PROPERTIES COMPILE_FLAGS -Wno-error) - target_compile_options(mbgl-glfw PRIVATE -fvisibility-inlines-hidden ) diff --git a/platform/linux/config.cmake b/platform/linux/config.cmake index d16842c201..8fbfafb417 100644 --- a/platform/linux/config.cmake +++ b/platform/linux/config.cmake @@ -1,4 +1,4 @@ -mason_use(glfw VERSION 2017-02-09-77a8f10) +mason_use(glfw VERSION 2017-07-13-67c9155) mason_use(mesa VERSION 13.0.4) mason_use(boost_libprogram_options VERSION 1.62.0${MASON_CXXABI_SUFFIX}) mason_use(sqlite VERSION 3.14.2) diff --git a/platform/macos/config.cmake b/platform/macos/config.cmake index 742fce2517..d037469bd0 100644 --- a/platform/macos/config.cmake +++ b/platform/macos/config.cmake @@ -1,6 +1,6 @@ set(CMAKE_OSX_DEPLOYMENT_TARGET 10.10) -mason_use(glfw VERSION 2017-02-09-77a8f10) +mason_use(glfw VERSION 2017-07-13-67c9155) mason_use(boost_libprogram_options VERSION 1.62.0) mason_use(gtest VERSION 1.8.0) mason_use(benchmark VERSION 1.0.0-1) |