-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial skeleton config for CPack-generated Debian packages. Installs…
… and starts in a test VM but waveform rendering borks. See #743.
- Loading branch information
1 parent
73e4357
commit 7a6c0ca
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -287,3 +287,19 @@ set_property(TARGET scopehal PROPERTY POSITION_INDEPENDENT_CODE ON) | |
set_property(TARGET log PROPERTY POSITION_INDEPENDENT_CODE ON) | ||
set_property(TARGET xptools PROPERTY POSITION_INDEPENDENT_CODE ON) | ||
set_property(TARGET scopeprotocols PROPERTY POSITION_INDEPENDENT_CODE ON) | ||
|
||
# CPack package generation | ||
set(CPACK_PACKAGE_NAME "ngscopeclient") | ||
set(CPACK_PACKAGE_VENDOR "ngscopeclient.org project") | ||
set(CPACK_PACKAGE_VERSION_PATCH "0+${NGSCOPECLIENT_VERSION}") | ||
set(CPACK_PACKAGE_DESCRIPTION "Cross platform T&M remote control and signal analysis suite") | ||
set(CPACK_PACKAGE_HOMEPAGE_URL "https://www.ngscopeclient.org/") | ||
set(CPACK_THREADS 0) | ||
|
||
# Debian / Ubuntu specific packaging config | ||
# Versions are based on what Bookworm is shipping as of 2024-10-30 | ||
set(CPACK_DEBIAN_PACKAGE_MAINTAINER "Andrew Zonenberg <[email protected]>") | ||
set(CPACK_DEBIAN_PACKAGE_DEPENDS "libc6 (>= 2.36-9), libpng16-16(>= 1.6.39-2), libsigc++-2.0-0v5 (>= 2.12.0-1), libyaml-cpp0.7(>= 0.7.0), libgomp1(>= 12.2.0), libvulkan1(>= 1.3.239), libglfw3(>= 3.3.8), libgtk-3-0(>= 3.24.38), zlib1g(>= 1.2.13), libhidapi-hidraw0(>= 0.13.1), liblxi1(>= 1.18), libtirpc3 (>= 1.3.3)" ) | ||
|
||
# this must be at the very end *after* we've done all the config | ||
include(CPack) |