1
0
Fork 0

CMake: Added postfix for profiled exe

This commit is contained in:
madmaxoft 2014-01-14 09:32:43 +01:00
parent f7c691caaa
commit b263d55a2d
1 changed files with 4 additions and 0 deletions

View File

@ -100,6 +100,10 @@ endif()
# Make the debug executable have a "_debug" suffix
SET_TARGET_PROPERTIES(${EXECUTABLE} PROPERTIES DEBUG_POSTFIX "_debug")
# Make the profiled executables have a "_profile" postfix
SET_TARGET_PROPERTIES(${EXECUTABLE} PROPERTIES DEBUGPROFILE_POSTFIX "_debug_profile")
SET_TARGET_PROPERTIES(${EXECUTABLE} PROPERTIES RELEASEPROFILE_POSTFIX "_profile")
# Precompiled headers (2nd part)
if (MSVC)