diff options
Diffstat (limited to 'examples/sending_arguments')
-rw-r--r-- | examples/sending_arguments/CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/sending_arguments/CMakeLists.txt b/examples/sending_arguments/CMakeLists.txt index 66e76ec..1a852b4 100644 --- a/examples/sending_arguments/CMakeLists.txt +++ b/examples/sending_arguments/CMakeLists.txt @@ -1,19 +1,19 @@ cmake_minimum_required(VERSION 3.7.0) -project(sending_arguments) +project(sending_arguments LANGUAGES CXX) set(CMAKE_AUTOMOC ON) # SingleApplication base class -set(QAPPLICATION_CLASS QCoreApplication CACHE STRING "Inheritance class for SingleApplication") +set(QAPPLICATION_CLASS QCoreApplication) add_executable(${PROJECT_NAME} main.cpp messagereceiver.cpp messagereceiver.h main.cpp - ) +) find_package(Qt5 COMPONENTS Core REQUIRED) add_subdirectory(../.. SingleApplication) -target_link_libraries(${PROJECT_NAME} Qt5::Core SingleApplication) +target_link_libraries(${PROJECT_NAME} SingleApplication) |