From b79c3d9305ca26fadf138f654435b27bb105eb90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sat, 2 Aug 2014 13:15:55 +0200 Subject: [PATCH] Platform: properly set debug postfix also for WindowlessCglApplication. --- src/Magnum/Platform/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Magnum/Platform/CMakeLists.txt b/src/Magnum/Platform/CMakeLists.txt index 33ece0423..11e8d6949 100644 --- a/src/Magnum/Platform/CMakeLists.txt +++ b/src/Magnum/Platform/CMakeLists.txt @@ -197,6 +197,7 @@ endif() # Windowless CGL application if(WITH_WINDOWLESSCGLAPPLICATION) add_library(MagnumWindowlessCglApplication STATIC WindowlessCglApplication.cpp) + set_target_properties(MagnumWindowlessCglApplication PROPERTIES DEBUG_POSTFIX "-d") target_link_libraries(MagnumWindowlessCglApplication Magnum) install(FILES WindowlessCglApplication.h DESTINATION ${MAGNUM_INCLUDE_INSTALL_DIR}/Platform) install(TARGETS MagnumWindowlessCglApplication