diff --git a/source/CMakeLists.txt b/source/CMakeLists.txt index 9ef5a8b1..92079450 100644 --- a/source/CMakeLists.txt +++ b/source/CMakeLists.txt @@ -2,7 +2,11 @@ # ***************************************************************************** # Project remeres # ***************************************************************************** -project(canary-map-editor) +if(CMAKE_BUILD_TYPE STREQUAL "Debug") + project(canary-map-editor LANGUAGES CXX) +else() + project(canary-map-editor-debug LANGUAGES CXX) +endif() find_package(asio CONFIG REQUIRED) find_package(fmt CONFIG REQUIRED)