aboutsummaryrefslogtreecommitdiff
path: root/examples/sending_arguments/CMakeLists.txt
diff options
context:
space:
mode:
authorJonas Kvinge <jonas@jkvinge.net>2020-10-27 20:26:05 +0100
committerGitHub <noreply@github.com>2020-10-27 20:26:05 +0100
commit3dd0c6dfbd4c828fc022501078fbc0b6d1473957 (patch)
tree3e6203b6232fcca6dc3090cc2ec5bcccc9cba900 /examples/sending_arguments/CMakeLists.txt
parentMerge pull request #118 from Shatur95/improve-qt6-support (diff)
parentEnable checks for warnings (diff)
downloadsingleapplication-3dd0c6dfbd4c828fc022501078fbc0b6d1473957.tar.xz
Merge pull request #120 from Shatur95/master
Add Qt6 CI builds
Diffstat (limited to 'examples/sending_arguments/CMakeLists.txt')
-rw-r--r--examples/sending_arguments/CMakeLists.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/sending_arguments/CMakeLists.txt b/examples/sending_arguments/CMakeLists.txt
index 06c740f..2cc5597 100644
--- a/examples/sending_arguments/CMakeLists.txt
+++ b/examples/sending_arguments/CMakeLists.txt
@@ -6,6 +6,9 @@ set(CMAKE_AUTOMOC ON)
# SingleApplication base class
set(QAPPLICATION_CLASS QCoreApplication)
+add_subdirectory(../.. SingleApplication)
+
+find_package(Qt${QT_DEFAULT_MAJOR_VERSION} COMPONENTS Core REQUIRED)
add_executable(${PROJECT_NAME}
main.cpp
@@ -14,6 +17,4 @@ add_executable(${PROJECT_NAME}
main.cpp
)
-find_package(Qt5 COMPONENTS Core REQUIRED)
-add_subdirectory(../.. SingleApplication)
target_link_libraries(${PROJECT_NAME} SingleApplication::SingleApplication)