We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7b39883 + 615ace7 commit 39cd4b0Copy full SHA for 39cd4b0
CMakeLists.txt
@@ -7,7 +7,9 @@ option( VALGRIND "Run select unit tests under valgrind" OFF )
7
option( ASAN "Build the plugin with the address sanitizer" OFF )
8
9
set( CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake )
10
-set( CMAKE_BUILD_TYPE Debug )
+if( "${CMAKE_BUILD_TYPE}" STREQUAL "" )
11
+ set( CMAKE_BUILD_TYPE Debug )
12
+endif()
13
14
find_package( XRootD REQUIRED COMPONENTS UTILS SERVER )
15
find_package( CURL REQUIRED )
0 commit comments