Skip to content
Snippets Groups Projects
Commit 8edee7b1 authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler
Browse files

[cmake] enabled CMAKE_BUILD_TYPE "Debug" by default

parent 0d15c2f5
No related branches found
No related tags found
No related merge requests found
......@@ -25,6 +25,11 @@ EXECUTE_PROCESS(
OUTPUT_STRIP_TRAILING_WHITESPACE
)
if (NOT CMAKE_BUILD_TYPE)
message(STATUS "No build type selected, setting default build type 'Debug'")
set(CMAKE_BUILD_TYPE "Debug")
endif()
#----------------------------------------------------------------------------------------------------
# Options, that can be changed be the User in order to customise dune-stokes
#----------------------------------------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment