We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73d7a38 commit 01c6f70Copy full SHA for 01c6f70
CMakeLists.txt
@@ -24,6 +24,8 @@ SET(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/")
24
# SET(CMAKE_BUILD_TYPE Debug)
25
SET(CMAKE_BUILD_TYPE Release)
26
27
+SET(CMAKE_DEBUG_POSTFIX _dbg)
28
+
29
# Set installation destination and prefix path to find libraries installed on
30
# this sytem. If this is not specified, /usr/local/ will be used.
31
#
src/CMakeLists.txt
@@ -47,6 +47,7 @@ IF(GOOGLEPERFTOOLS_FOUND)
47
ENDIF()
48
49
CONFIGURE_FILE(git_config.hpp.in git_config.hpp)
50
+SET_TARGET_PROPERTIES(std PROPERTIES DEBUG_POSTFIX ${CMAKE_DEBUG_POSTFIX})
51
52
# INSTALL(TARGETS enrich DESTINATION bin)
53
INSTALL(TARGETS std DESTINATION bin)
0 commit comments