From 49814b1a36da84cfb66bd7d49723bb35ab5b5be2 Mon Sep 17 00:00:00 2001 From: Eduardo Dantas Date: Thu, 21 Nov 2024 19:45:10 -0300 Subject: [PATCH] fix: build type --- source/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/CMakeLists.txt b/source/CMakeLists.txt index 92079450..149b6f73 100644 --- a/source/CMakeLists.txt +++ b/source/CMakeLists.txt @@ -3,9 +3,9 @@ # Project remeres # ***************************************************************************** if(CMAKE_BUILD_TYPE STREQUAL "Debug") - project(canary-map-editor LANGUAGES CXX) -else() project(canary-map-editor-debug LANGUAGES CXX) +else() + project(canary-map-editor LANGUAGES CXX) endif() find_package(asio CONFIG REQUIRED)