From 8cb5a17cd9e1df6e53f63e6e9876318240e7b300 Mon Sep 17 00:00:00 2001 From: DarthArgus Date: Sun, 13 May 2018 22:00:27 +0000 Subject: [PATCH] miff doesn't compile properly in release or minsizerel modes under clang; for now we'll work around it between this and the build script properly bind these Revert "properly bind these" This reverts commit 367f0e2d9aa1fcbb9637797965dc254f8b556c69. --- engine/client/CMakeLists.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/engine/client/CMakeLists.txt b/engine/client/CMakeLists.txt index 09869e54..9fb3c9e0 100644 --- a/engine/client/CMakeLists.txt +++ b/engine/client/CMakeLists.txt @@ -1,2 +1,3 @@ - -add_subdirectory(application) +if (DEFINED _MIFF OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU") + add_subdirectory(application) +endif()