RE: [CMake] Adding .pdb files to CPack (Visual Studio 7 generator)

2007-10-12 Thread Torsten Martinsen
Torsten Martinsen wrote: Hendrik Sattler wrote: Did you try using the LOCATION property of the TARGET stripping the extension and using that? Not until now, but: The LOCATION property expands to e.g. C:/user/gh/ais/impl/build/cmake/vc7/ca/$(OutDir)/ca.exe, so that is also no good. For

[CMake] Adding .pdb files to CPack (Visual Studio 7 generator)

2007-09-18 Thread Torsten Martinsen
In a macro, I succesfully use INSTALL( TARGETS ${project} RUNTIME DESTINATION bin) to add my .exe file to the list of files included by CPack. I also want the .pdb file, so I tried INSTALL( FILES ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/${project}.pdb

Re: [CMake] Adding .pdb files to CPack (Visual Studio 7 generator)

2007-09-18 Thread Hendrik Sattler
Am Dienstag 18 September 2007 schrieb Torsten Martinsen: In a macro, I succesfully use INSTALL( TARGETS ${project} RUNTIME DESTINATION bin) to add my .exe file to the list of files included by CPack. I also want the .pdb file, so I tried INSTALL( FILES