File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 16
16
run : |
17
17
sudo apt-get update --fix-missing
18
18
sudo apt-get install qt5-default
19
- sudo apt-get install qtbase5-private-dev
19
+ sudo apt-get install qtbase5-private-dev qtdeclarative5-dev
20
20
- name : qmake
21
21
run : qmake
22
22
- name : make
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.5)
2
2
project (ads_demo VERSION ${VERSION_SHORT} )
3
3
4
4
find_package (QT NAMES Qt6 Qt5 COMPONENTS Core REQUIRED)
5
- find_package (Qt${QT_VERSION_MAJOR} 5.5 COMPONENTS Core Gui Widgets REQUIRED)
5
+ find_package (Qt${QT_VERSION_MAJOR} 5.5 COMPONENTS Core Gui Widgets Quick QuickWidgets REQUIRED)
6
6
if (WIN32 AND QT_VERSION_MAJOR LESS 6)
7
7
find_package (Qt${QT_VERSION_MAJOR} COMPONENTS AxContainer REQUIRED)
8
8
endif ()
@@ -21,7 +21,9 @@ add_executable(AdvancedDockingSystemDemo WIN32 ${ads_demo_SRCS})
21
21
target_include_directories (AdvancedDockingSystemDemo PRIVATE "${CMAKE_CURRENT_SOURCE_DIR} /../src" )
22
22
target_link_libraries (AdvancedDockingSystemDemo PUBLIC Qt${QT_VERSION_MAJOR} ::Core
23
23
Qt${QT_VERSION_MAJOR} ::Gui
24
- Qt${QT_VERSION_MAJOR} ::Widgets)
24
+ Qt${QT_VERSION_MAJOR} ::Widgets
25
+ Qt${QT_VERSION_MAJOR} ::Quick
26
+ Qt${QT_VERSION_MAJOR} ::QuickWidgets)
25
27
if (WIN32 AND QT_VERSION_MAJOR LESS 6)
26
28
target_link_libraries (AdvancedDockingSystemDemo PUBLIC Qt${QT_VERSION_MAJOR} ::AxContainer)
27
29
endif ()
You can’t perform that action at this time.
0 commit comments