diff options
author | Shatur95 <genaloner@gmail.com> | 2020-10-24 13:42:20 +0300 |
---|---|---|
committer | Shatur95 <genaloner@gmail.com> | 2020-10-24 14:20:37 +0300 |
commit | 6c97f3e80de9c78b322617b8558bc34e978e29b9 (patch) | |
tree | 1665054400b6643fd938a2b3502f1c9e2f849e77 /examples/basic/CMakeLists.txt | |
parent | Merge pull request #118 from Shatur95/improve-qt6-support (diff) | |
download | singleapplication-6c97f3e80de9c78b322617b8558bc34e978e29b9.tar.xz |
Add Qt6 configuration
Diffstat (limited to 'examples/basic/CMakeLists.txt')
-rw-r--r-- | examples/basic/CMakeLists.txt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/basic/CMakeLists.txt b/examples/basic/CMakeLists.txt index 49be29c..c142923 100644 --- a/examples/basic/CMakeLists.txt +++ b/examples/basic/CMakeLists.txt @@ -4,10 +4,9 @@ project(basic LANGUAGES CXX) # SingleApplication base class set(QAPPLICATION_CLASS QCoreApplication) +add_subdirectory(../.. SingleApplication) add_executable(basic main.cpp) -find_package(Qt5 COMPONENTS Core REQUIRED) -add_subdirectory(../.. SingleApplication) target_link_libraries(${PROJECT_NAME} SingleApplication::SingleApplication) |