What steps will reproduce the problem?
1. cmake -DCMAKE_INSTALL_PREFIX=$HOME/install -DCMAKE_BUILD_TYPE=Release
-DCMAKE_TOOLCHAIN_FILE=../code/iOS.toolchain.cmake -DIOS_PLATFORM=SIMULATOR
-GXcode ../code
2. cmake --build . --target install --config Release
What is the expected output? What do you see instead?
The library are built but they are not installed as expected. No files are
installed but directory structure is created ($HOME/install/lib)
the second cmake command ends with:
-- Install configuration: "Release-iphones"
** BUILD SUCCEEDED **
No error reported.
What version of the product are you using? On what operating system?
cmake 2.8.10, macosx mountain lion, xcode 4.52 + command line tools.
Please provide any additional information below.
Looking into the file "cmake_install.cmake", I found that
CMAKE_INSTALL_CONFIG_NAME is set to Release-iphoneos but it is tested against
values Debug, Release, MinSizeRel, RelWithDebInfo.
Also, the CMAKE_INSTALL_COMPONENT variable is empty.
Thanks,
Julien.
Original issue reported on code.google.com by
allali.j...@gmail.comon 12 Nov 2012 at 9:44