1 commit a5d3497577c78b03c05c69d17df972fa9fb54f53
2 Author: Linus Heckemann <git@sphalerite.org>
3 Date: Fri Jan 5 23:57:09 2018 +0100
5 Add -Wno-narrowing to GWEN's CMakeLists
7 This avoids the compilation issue that occurs on aarch64 with gcc6.
8 (nixpkgs-specific patch)
10 diff --git a/examples/ThirdPartyLibs/Gwen/CMakeLists.txt b/examples/ThirdPartyLibs/Gwen/CMakeLists.txt
11 index 82fa0ffba..26c4bbd37 100644
12 --- a/examples/ThirdPartyLibs/Gwen/CMakeLists.txt
13 +++ b/examples/ThirdPartyLibs/Gwen/CMakeLists.txt
14 @@ -15,7 +15,7 @@ IF(NOT WIN32 AND NOT APPLE)
15 ADD_DEFINITIONS("-DDYNAMIC_LOAD_X11_FUNCTIONS=1")
18 -ADD_DEFINITIONS( -DGLEW_STATIC -DGWEN_COMPILE_STATIC -D_HAS_EXCEPTIONS=0 -D_STATIC_CPPLIB )
19 +ADD_DEFINITIONS( -DGLEW_STATIC -DGWEN_COMPILE_STATIC -D_HAS_EXCEPTIONS=0 -D_STATIC_CPPLIB -Wno-narrowing )
21 FILE(GLOB gwen_SRCS "*.cpp" "Controls/*.cpp" "Controls/Dialog/*.cpp" "Controls/Dialogs/*.cpp" "Controls/Layout/*.cpp" "Controls/Property/*.cpp" "Input/*.cpp" "Platforms/*.cpp" "Renderers/*.cpp" "Skins/*.cpp")
22 FILE(GLOB gwen_HDRS "*.h" "Controls/*.h" "Controls/Dialog/*.h" "Controls/Dialogs/*.h" "Controls/Layout/*.h" "Controls/Property/*.h" "Input/*.h" "Platforms/*.h" "Renderers/*.h" "Skins/*.h")