##// END OF EJS Templates
Prise en compte du suffix des binaires en fonction du BUILD_TYPE
perrinel -
r26:db15cec5313b
parent child
Show More
@@ -17,6 +17,15
17 17 # SET (DEBUG_SUFFIX "")
18 18 #ENDIF()
19 19
20 IF(CMAKE_BUILD_TYPE MATCHES "Debug")
21 SET (CMAKE_BUILD_TYPE "Debug")
22 SET (DEBUG_SUFFIX "d")
23 ELSE()
24 MESSAGE (STATUS "Build in Release")
25 SET (SCIQLOP_BUILD_TYPE "Release")
26 SET (DEBUG_SUFFIX "")
27 ENDIF()
28
20 29 #
21 30 # Need to compile tests?
22 31 #
General Comments 0
You need to be logged in to leave comments. Login now