summaryrefslogtreecommitdiffstats
path: root/examples/help/contextsensitivehelp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/help/contextsensitivehelp')
-rw-r--r--examples/help/contextsensitivehelp/CMakeLists.txt12
1 files changed, 4 insertions, 8 deletions
diff --git a/examples/help/contextsensitivehelp/CMakeLists.txt b/examples/help/contextsensitivehelp/CMakeLists.txt
index f1b8808f0..1eebae222 100644
--- a/examples/help/contextsensitivehelp/CMakeLists.txt
+++ b/examples/help/contextsensitivehelp/CMakeLists.txt
@@ -1,34 +1,30 @@
-# Generated from contextsensitivehelp.pro.
-
cmake_minimum_required(VERSION 3.16)
project(contextsensitivehelp LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(CMAKE_AUTOMOC ON)
-set(CMAKE_AUTORCC ON)
set(CMAKE_AUTOUIC ON)
if(NOT DEFINED INSTALL_EXAMPLESDIR)
- set(INSTALL_EXAMPLESDIR "examples")
+ set(INSTALL_EXAMPLESDIR "examples")
endif()
set(INSTALL_EXAMPLEDIR "${INSTALL_EXAMPLESDIR}/help/contextsensitivehelp")
-find_package(Qt6 COMPONENTS Core)
-find_package(Qt6 COMPONENTS Gui)
-find_package(Qt6 COMPONENTS Help)
-find_package(Qt6 COMPONENTS Widgets)
+find_package(Qt6 REQUIRED COMPONENTS Core Gui Help Widgets)
qt_add_executable(contextsensitivehelp
helpbrowser.cpp helpbrowser.h
main.cpp
wateringconfigdialog.cpp wateringconfigdialog.h wateringconfigdialog.ui
)
+
set_target_properties(contextsensitivehelp PROPERTIES
WIN32_EXECUTABLE TRUE
MACOSX_BUNDLE TRUE
)
+
target_link_libraries(contextsensitivehelp PUBLIC
Qt::Core
Qt::Gui