Skip to content

Commit

Permalink
fix: generate name for debug/release
Browse files Browse the repository at this point in the history
  • Loading branch information
dudantas committed Nov 21, 2024
1 parent d01adc0 commit cb00fcf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion source/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit cb00fcf

Please sign in to comment.