File tree 4 files changed +16
-10
lines changed
4 files changed +16
-10
lines changed Original file line number Diff line number Diff line change @@ -26,27 +26,29 @@ runs:
26
26
build-essential \
27
27
cmake \
28
28
git \
29
+ libgtk-3-dev \
30
+ libayatana-appindicator3-dev \
29
31
libasound2-dev \
30
32
libegl-dev \
31
- libftdi-dev \
33
+ libflatbuffers-dev flatbuffers-compiler \
34
+ libftdi1-dev \
32
35
libgl-dev \
33
36
libglvnd-dev \
37
+ liblzma-dev \
34
38
libpipewire-0.3-dev \
35
39
libqt5serialport5-dev \
36
- libqt5sql5-sqlite \
37
- libqt5svg5-dev \
38
- libqt5x11extras5-dev \
39
40
libssl-dev \
41
+ libsystemd-dev \
40
42
libturbojpeg0-dev \
41
43
libusb-1.0-0-dev \
42
44
libx11-dev \
43
45
libzstd-dev \
44
- nasm \
45
- python3-minimal \
46
+ pkg-config \
46
47
qtbase5-dev \
47
- qdbus-qt5 \
48
- rpm \
49
- libsystemd-dev
48
+ wget \
49
+ unzip \
50
+ pkg-config \
51
+ python3
50
52
51
53
- name : Checkout repository
52
54
uses : actions/checkout@v4
Original file line number Diff line number Diff line change 21
21
matrix :
22
22
niceName : [ Debian ]
23
23
linuxVersion : [ bullseye, bookworm ]
24
- dockerImage : [ x86_64, arm-32bit-armv6l, arm-64bit-aarch64 ]
24
+ dockerImage : [ x86_64, arm-32bit-armv6l-native , arm-64bit-aarch64-native ]
25
25
include :
26
26
- runner : ubuntu-24.04
27
27
dockerImage : x86_64
Original file line number Diff line number Diff line change 1
1
macro (DeployApple TARGET )
2
2
if (EXISTS ${TARGET_FILE} )
3
+ cmake_policy (PUSH)
4
+ cmake_policy (SET CMP0177 NEW)
3
5
install ( TARGETS hyperhdr DESTINATION "share/.." COMPONENT "HyperHDR" )
6
+ cmake_policy (POP)
4
7
5
8
install (FILES "${PROJECT_SOURCE_DIR} /cmake/osx/Hyperhdr.icns" DESTINATION "hyperhdr.app/Contents/Resources" COMPONENT "HyperHDR" )
6
9
install (FILES "${PROJECT_SOURCE_DIR} /LICENSE" DESTINATION "hyperhdr.app/Contents/Resources" COMPONENT "HyperHDR" )
Original file line number Diff line number Diff line change @@ -246,6 +246,7 @@ if ( ENABLE_XZ )
246
246
option (BUILD_TESTING "" OFF )
247
247
add_subdirectory (${CMAKE_CURRENT_SOURCE_DIR} /xz)
248
248
set_target_properties (liblzma PROPERTIES INTERFACE_INCLUDE_DIRECTORIES $<BUILD_INTERFACE:${CMAKE_SOURCE_DIR} /external/xz/src/liblzma/api>)
249
+ set_property (TARGET liblzma PROPERTY POSITION_INDEPENDENT_CODE ON )
249
250
add_library (LibLZMA::LibLZMA ALIAS liblzma)
250
251
endif ()
251
252
ENDIF ()
You can’t perform that action at this time.
0 commit comments