Skip to content

Commit 81f1cc1

Browse files
committed
x
1 parent de1e209 commit 81f1cc1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/conan.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
- os: macos-latest
2323
profile: macos-latest-armv8
2424
build_type: Release
25-
- os: windows-latest
26-
profile: windows-latest-x86_64
27-
build_type: Release
25+
#- os: windows-latest
26+
# profile: windows-latest-x86_64
27+
# build_type: Release
2828

2929
steps:
3030
- name: Checkout repository

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ set(CMAKE_POSITION_INDEPENDENT_CODE ON)
2626
find_package(QT 6.7 NAMES Qt6 COMPONENTS Core REQUIRED)
2727

2828
find_package(Qt6 COMPONENTS Core Concurrent Network Widgets Xml Quick QuickWidgets QuickControls2 REQUIRED)
29-
find_package(Qt6LinguistTools REQUIRED)
30-
get_target_property (QT_QMAKE_EXECUTABLE Qt::qmake IMPORTED_LOCATION)
29+
find_package(Qt6 CONFIG REQUIRED COMPONENTS LinguistTools)
30+
get_target_property (QT_QMAKE_EXECUTABLE Qt6::qmake IMPORTED_LOCATION)
3131
message(STATUS "Using Qt ${QT_VERSION} (${QT_QMAKE_EXECUTABLE})")
3232

3333
if (UNIX AND NOT APPLE)

0 commit comments

Comments
 (0)