Skip to content

Commit acfad63

Browse files
committed
fix CI for qt6
1 parent 9811e3d commit acfad63

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/cpp-ci-serial-programs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
os: [windows-2022, macos-15-large, ubuntu-24.04]
12+
os: [windows-2022, macos-15, ubuntu-24.04]
1313
qt_version: ['5.12.12', '6.7.2']
1414
include:
1515
- qt_version: '5.12.12'

SerialPrograms/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2156,7 +2156,7 @@ else()
21562156
if ((APPLE) AND (CMAKE_SYSTEM_PROCESSOR MATCHES "(arm64)|(ARM64)"))
21572157
add_library(libdpp STATIC IMPORTED)
21582158
set_target_properties(libdpp PROPERTIES
2159-
IMPORTED_LOCATION ../3rdPartyBinaries/libdpp_macos_arm64.a
2159+
IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/../3rdPartyBinaries/libdpp_macos_arm64.a"
21602160
INTERFACE_COMPILE_DEFINITIONS "PA_DPP"
21612161
INTERFACE_LINK_LIBRARIES "-L/opt/homebrew/lib -lssl -lcrypto -lopus -lsodium -lz" # add dpp's deps
21622162
)

0 commit comments

Comments
 (0)