[CMake] CPack Error: Not enough items on list: CPACK_INSTALL_CMAKE_PROJECTS

2009-08-13 Thread Karl Reite
Hi, My problem is that I can not get CPack to create an installer for my project. I have done this before with success, but this time I can not figure out the problem. I work in Visual Studio 2005 SP1. The project compiles without errors. When i try to build the "PACKAGE" project (this call

Re: [CMake] CPack Error: Not enough items on list: CPACK_INSTALL_CMAKE_PROJECTS

2009-08-13 Thread David Cole
>From CPack.cmake :cpack_set_if_not_set(CPACK_INSTALL_CMAKE_PROJECTS "${CMAKE_BINARY_DIR};${CMAKE_PROJECT_NAME};ALL;/") Looks like you do not have a "PROJECT" statement in your top level CMakeLists.txt file. If you did, the second component of CPACK_INSTALL_CMAKE_PROJECTS would not be the empty

Re: [CMake] CPack Error: Not enough items on list: CPACK_INSTALL_CMAKE_PROJECTS

2009-08-14 Thread Karl Reite
: 13. august 2009 17:38 To: Karl Reite Cc: cmake@cmake.org Subject: Re: [CMake] CPack Error: Not enough items on list: CPACK_INSTALL_CMAKE_PROJECTS >From CPack.cmake : cpack_set_if_not_set(CPACK_INSTALL_CMAKE_PROJECTS "${CMAKE_BINARY_DIR};${CMAKE_PROJECT_NAME};ALL;/") Looks like yo