From a800db80e4c05c2637c5e5788c1d50aeeae15acf Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Sun, 8 Mar 2009 16:11:56 +0000 Subject: Add NSIS generator for CPack. git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@252 7dcaeef0-15fb-0310-b436-a5af3365683c --- CPackConfig.cmake | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) (limited to 'CPackConfig.cmake') diff --git a/CPackConfig.cmake b/CPackConfig.cmake index 4a759abc..398e3ab1 100644 --- a/CPackConfig.cmake +++ b/CPackConfig.cmake @@ -7,11 +7,11 @@ include(InstallRequiredSystemLibraries) set(CPACK_PACKAGE_NAME ${APPLICATION_NAME}) set(CPACK_PACKAGE_VENDOR "${APPLICATION_NAME} developers") set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "The SSH library") -set(CPACK_PACKAGE_INSTALL_DIRECTORY "libssh") set(CPACK_PACKAGING_INSTALL_PREFIX "libssh") set(CPACK_PACKAGE_VENDOR "The SSH Libaray Development Team") set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_SOURCE_DIR}/COPYING") +set(CPACK_TOPLEVEL_DIRECTORY ${CMAKE_BINARY_DIR}/nsis) ### versions set(CPACK_PACKAGE_VERSION_MAJOR "0") @@ -19,20 +19,21 @@ set(CPACK_PACKAGE_VERSION_MINOR "2") set(CPACK_PACKAGE_VERSION_PATCH "90") set(CPACK_PACKAGE_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}") -set(CPACK_GENERATOR "NSIS") -set(CPACK_PACKAGE_INSTALL_DIRECTORY "${CPACK_PACKAGE_NAME}-${CPACK_PACKAGE_VERSION}") - ### source package settings set(CPACK_SOURCE_GENERATOR "TGZ") set(CPACK_SOURCE_IGNORE_FILES "~$;[.]swp$;/[.]svn/;/[.]git/;.gitignore;/build/;tags;cscope.*") set(CPACK_SOURCE_PACKAGE_FILE_NAME "${CPACK_PACKAGE_NAME}-${CPACK_PACKAGE_VERSION}") -### nsis specific +### install dirs +# C:\Program Files\name +set(CPACK_PACKAGE_INSTALL_DIRECTORY ${CPACK_PACKAGE_NAME}) + +### nsis +set(CPACK_GENERATOR "NSIS") + set(CPACK_NSIS_DISPLAY_NAME "The SSH Library") #set(CPACK_NSIS_COMPRESSOR "/SOLID lzma") - -# see http://www.cmake.org/Wiki/CMake:Component_Install_With_CPack -set(CPACK_PACKAGE_INSTALL_DIRECTORY "libssh") +set(CPACK_NSIS_COMPRESSOR "/SOLID zlib") set(CPACK_COMPONENT_LIBRARIES_DISPLAY_NAME "Libraries") set(CPACK_COMPONENT_HEADERS_DISPLAY_NAME "C/C++ Headers") @@ -48,6 +49,8 @@ set(CPACK_COMPONENT_HEADERS_DEPENDS libraries) #set(CPACK_COMPONENT_LIBRARIES_GROUP "Development") #set(CPACK_COMPONENT_HEADERS_GROUP "Development") +set(CPACK_COMPONENTS_ALL "libraries;headers") + set(CPACK_NSIS_MENU_LINKS "http://0xbadc0de.be/wiki/libssh:libssh" "libssh homepage") include(CPack) -- cgit v1.2.3