From 8d9514148ccacef82dcbef70f433afae4a3fd70d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Mon, 27 Jan 2020 19:08:40 +0100 Subject: [PATCH] Platform: no need, GlfwApplication isn't ported to Emscripten anyway. --- src/Magnum/Platform/Test/CMakeLists.txt | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/Magnum/Platform/Test/CMakeLists.txt b/src/Magnum/Platform/Test/CMakeLists.txt index 273fd9be9..b2a82fac3 100644 --- a/src/Magnum/Platform/Test/CMakeLists.txt +++ b/src/Magnum/Platform/Test/CMakeLists.txt @@ -58,10 +58,8 @@ if(WITH_GLFWAPPLICATION) # HiDPi.manifest not needed, as GLFW sets that on its own target_link_libraries(PlatformGlfwApplicationTest PRIVATE MagnumGlfwApplication Corrade::Main) # Window icon loading - if(NOT CORRADE_TARGET_EMSCRIPTEN) - target_sources(PlatformGlfwApplicationTest PRIVATE ${Platform_RESOURCES}) - target_link_libraries(PlatformGlfwApplicationTest PRIVATE MagnumTrade) - endif() + target_sources(PlatformGlfwApplicationTest PRIVATE ${Platform_RESOURCES}) + target_link_libraries(PlatformGlfwApplicationTest PRIVATE MagnumTrade) set_target_properties(PlatformGlfwApplicationTest PROPERTIES FOLDER "Magnum/Platform/Test") endif()