1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-02 09:03:37 +00:00

cmake: Rename output folders.

This commit is contained in:
Sergey Lipskiy 2018-03-15 22:45:30 +07:00
parent 7aeb1018ea
commit 09a508ae11

View File

@ -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)