From 09a508ae114dad5a5067c5a1c411c24ec55b5d44 Mon Sep 17 00:00:00 2001 From: Sergey Lipskiy Date: Thu, 15 Mar 2018 22:45:30 +0700 Subject: [PATCH] cmake: Rename output folders. --- src/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 68ac236d..d611a22b 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -342,7 +342,7 @@ if( CMAKE_BUILD_TYPE STREQUAL "Debug") PROPERTIES LINKER_LANGUAGE CXX # Or else we get an error message, because cmake can't figure out from the ".o"-suffix that it is a C-linker we need. PREFIX "" - LIBRARY_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/plugin/debug + LIBRARY_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/plugin/Debug ) if(SDL) @@ -375,7 +375,7 @@ if( CMAKE_BUILD_TYPE STREQUAL "Release") PROPERTIES LINKER_LANGUAGE CXX # Or else we get an error message, because cmake can't figure out from the ".o"-suffix that it is a C-linker we need. PREFIX "" - LIBRARY_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/plugin/release + LIBRARY_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/plugin/Release ) if(SDL)