Hello,
I noticed a strange behavior of cmake during the installation phase with
Visual Studio 2008. To demonstrate what's happening I made this CMakeLists.txt:
- - -
CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
IF(MSVC)
SET(CMAKE_INSTALL_PREFIX c:/Temp/cmake_test)
SET(FOO_DEF foo.def)
ELSE(MSVC)
SE
Hello,
I have some problems while executing the INSTALL-target created from cmake in
my visual studio project (VS 2008).
Configuration looks like this:
...
IF(MSVC)
INSTALL(TARGETS "MY-lib_shared" "MY-lib_static"
LIBRARY DESTINATION release/lib/
RUNTIME DESTINATION release/bin