Skip to content

Commit

Permalink
Merge pull request #49 from stefanb2/topic-explicitly-require-threads
Browse files Browse the repository at this point in the history
Explicitly require threads
  • Loading branch information
bkueng authored Nov 29, 2023
2 parents 1dd28f2 + 40c21ed commit aa88c2e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
strategy:
matrix:
container:
- debian:oldstable
- debian:stable
- debian:testing
- fedora:38
Expand All @@ -33,6 +34,11 @@ jobs:
- container: fedora:rawhide
no_x11: true

exclude:
# Debian Bullseye doesn't have Qt6
- container: debian:oldstable
qt: 6

fail-fast: false

container:
Expand Down
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ if(CMAKE_BUILD_TYPE STREQUAL Debug)
find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Test)
endif()
find_package(OpenSSL REQUIRED)
find_package(Threads REQUIRED)

# exposes ${TS_FILES}
add_subdirectory(data/translations)
Expand Down Expand Up @@ -79,6 +80,7 @@ target_link_libraries(${TARGET} PRIVATE
Qt::Gui
Qt::Widgets
OpenSSL::Crypto
Threads::Threads
)
target_include_directories(${TARGET} PRIVATE ${OPENSSL_INCLUDE_DIR})

Expand Down

0 comments on commit aa88c2e

Please sign in to comment.