If you look in the file ${CMAKE_BINARY_DIR}/CPackConfig.cmake, you should see something like this: SET(CPACK_PACKAGE_FILE_NAME "cmake-2.6.3-Linux-unknown")
That variable controls the name of the installer file produced by CPack. If you set the variable to whatever you want prior to the "include(CPack)" in your main CMakeLists.txt file, it should generate a file with your name instead of the default. Or, if you are building CMake (as it appears from the file name), you could define it in the cache when you first run cmake: cmake -DCPACK_PACKAGE_FILE_NAME=filename-that-follows-my-convention ../CMake HTH, David On Mon, Jun 8, 2009 at 6:26 PM, Christian Goetze (CG Linden) < c...@lindenlab.com> wrote: > I used the following process to build a .deb out of the cmake source tree: > > tar xzf cmake-2.6.3.tar.gz > cd cmake-2.6.3 > mkdir build > cd build/ > cmake ../ > make > bin/cpack -G DEB > > This produces a debian named: cmake-2.6.3-Linux-unknown.deb > I would like to change the name to conform to our conventions. How do I > do that? > I can't find any documentation for the DEB generator ... > -- > cg > > > > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the CMake FAQ at: > http://www.cmake.org/Wiki/CMake_FAQ > > Follow this link to subscribe/unsubscribe: > http://www.cmake.org/mailman/listinfo/cmake >
_______________________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Follow this link to subscribe/unsubscribe: http://www.cmake.org/mailman/listinfo/cmake