Skip to content

Commit 3e4c282

Browse files
committed
Packaging for both 32 and 64 bit Windows platforms.
1 parent c0fc5f0 commit 3e4c282

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

CMakeLists.txt

+16-2
Original file line numberDiff line numberDiff line change
@@ -86,13 +86,21 @@ set(CUSTOM_SHELL_SHABANG "#!/bin/sh -e")
8686
set(CPACK_GENERATOR "ZIP")
8787
set(CPACK_STRIP_FILES true)
8888
set(CPACK_PACKAGE_NAME "${CMAKE_PROJECT_NAME}")
89-
set(CPACK_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME}-${direwolf_VERSION}_${CMAKE_SYSTEM_PROCESSOR}")
89+
# This has architecture of the build machine, not the target platform.
90+
# e.g. Comes out as x86_64 when building for i686 target platform.
91+
#set(CPACK_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME}-${direwolf_VERSION}_${CMAKE_SYSTEM_PROCESSOR}")
92+
# We don't know the target yet so this is set after FindCPUflags.
9093
set(CPACK_PACKAGE_CONTACT "https://github.com/wb2osz/direwolf")
91-
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Dire Wolf is a software soundcard AX.25 packet modem/TNC and APRS encoder/decoder")
94+
SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Dire Wolf is an AX.25 soundcard TNC, digipeater, APRS IGate, GPS tracker, and APRStt gateway")
9295
set(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_SOURCE_DIR}/README.md")
9396
set(CPACK_RESOURCE_FILE_README "${CMAKE_SOURCE_DIR}/README.md")
9497
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_SOURCE_DIR}/LICENSE")
9598
set(CPACK_SOURCE_IGNORE_FILES "${PROJECT_BINARY_DIR};/.git/;.gitignore;menu.yml;.travis.yml;.appveyor.yml;default.nix;.envrc;TODOs.org;/.scripts/")
99+
SET(CPACK_PACKAGE_VERSION "${direwolf_VERSION}")
100+
SET(CPACK_PACKAGE_VERSION_MAJOR "${direwolf_VERSION_MAJOR}")
101+
SET(CPACK_PACKAGE_VERSION_MINOR "${direwolf_VERSION_MINOR}")
102+
SET(CPACK_PACKAGE_VERSION_PATCH "${direwolf_VERSION_PATCH}")
103+
SET(CPACK_DEBIAN_PACKAGE_DEPENDS "libasound2,libgps23")
96104

97105
# if we don't set build_type
98106
if(NOT DEFINED CMAKE_BUILD_TYPE OR "${CMAKE_BUILD_TYPE}" STREQUAL "")
@@ -114,6 +122,12 @@ include(FindCompiler)
114122
# find cpu flags (and set compiler)
115123
include(FindCPUflags)
116124

125+
if(${ARCHITECTURE} MATCHES "x86")
126+
set(CPACK_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME}-${direwolf_VERSION}_i686")
127+
else()
128+
set(CPACK_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME}-${direwolf_VERSION}_${ARCHITECTURE}")
129+
endif()
130+
117131
# auto include current directory
118132
set(CMAKE_INCLUDE_CURRENT_DIR ON)
119133

0 commit comments

Comments
 (0)