[CMake] CPACK not generating binary install

2011-11-01 Thread Darrell Langford
I'm trying to use CPACK to generate a binary installer, I can get a source installer to sort of work, but I don't need the source at all.  We do out of source builds, but I have CMAKE place my libs and bins back into the source tree under a parent/project/lib and parent/project/bin directory

Re: [CMake] CPACK not generating binary install

2011-11-01 Thread David Cole
INSTALL rule DESTINATION arguments are intended to be non-full path directory names, that get placed underneath CMAKE_INSTALL_PREFIX. When CPack runs, it tries to build the install target after setting a value into CMAKE_INSTALL_PREFIX. Since your install rules ignore this, by giving full path

Re: [CMake] CPACK not generating binary install

2011-11-01 Thread Eric Noulard
2011/11/1 David Cole david.c...@kitware.com: INSTALL rule DESTINATION arguments are intended to be non-full path directory names, that get placed underneath CMAKE_INSTALL_PREFIX. When CPack runs, it tries to build the install target after setting a value into CMAKE_INSTALL_PREFIX. Since