pmartz / jag-3d

Automatically exported from code.google.com/p/jag-3d
0 stars 1 forks source link

Debug executables lack 'd' suffix #35

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
A Jag installation contains only one copy of the executables because the names 
are identical regardless of build config. If you build both debug and release, 
the install usually contains the debug versions, as they are installed last and 
overwrite the release versions.

Running the executables from the command line consequently results in very slow 
performance and can be quite a head-scratcher unless you know what happened. 
For this reason along, the issue should be addressed.

Original issue reported on code.google.com by SkewMat...@gmail.com on 23 Aug 2013 at 7:01

GoogleCodeExporter commented 9 years ago
Fixing this with:
set_property( TARGET ${_localExeName} PROPERTY DEBUG_OUTPUT_NAME 
"${_localExeName}${CMAKE_DEBUG_POSTFIX}" )

Original comment by SkewMat...@gmail.com on 8 Nov 2013 at 9:05