From 56e4f8d277e41bf78e22c3100d6d88308a0b3c84 Mon Sep 17 00:00:00 2001 From: Shatur95 Date: Fri, 15 May 2020 18:42:56 +0300 Subject: [PATCH] Update CMake examples --- examples/basic/CMakeLists.txt | 10 ++++------ examples/calculator/CMakeLists.txt | 8 ++++---- examples/sending_arguments/CMakeLists.txt | 8 ++++---- 3 files changed, 12 insertions(+), 14 deletions(-) diff --git a/examples/basic/CMakeLists.txt b/examples/basic/CMakeLists.txt index 4f1902b..dd84feb 100644 --- a/examples/basic/CMakeLists.txt +++ b/examples/basic/CMakeLists.txt @@ -1,15 +1,13 @@ cmake_minimum_required(VERSION 3.1.0) -project(basic) +project(basic LANGUAGES CXX) # SingleApplication base class -set(QAPPLICATION_CLASS QCoreApplication CACHE STRING "Inheritance class for SingleApplication") +set(QAPPLICATION_CLASS QCoreApplication) -add_executable(basic - main.cpp - ) +add_executable(basic 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) diff --git a/examples/calculator/CMakeLists.txt b/examples/calculator/CMakeLists.txt index c90257a..565262c 100644 --- a/examples/calculator/CMakeLists.txt +++ b/examples/calculator/CMakeLists.txt @@ -1,11 +1,11 @@ cmake_minimum_required(VERSION 3.1.0) -project(calculator) +project(calculator LANGUAGES CXX) set(CMAKE_AUTOMOC ON) # SingleApplication base class -set(QAPPLICATION_CLASS QApplication CACHE STRING "Inheritance class for SingleApplication") +set(QAPPLICATION_CLASS QApplication) add_executable(${PROJECT_NAME} button.h @@ -13,8 +13,8 @@ add_executable(${PROJECT_NAME} button.cpp calculator.cpp main.cpp - ) +) find_package(Qt5 COMPONENTS Widgets REQUIRED) add_subdirectory(../.. SingleApplication) -target_link_libraries(${PROJECT_NAME} Qt5::Widgets SingleApplication) +target_link_libraries(${PROJECT_NAME} SingleApplication) diff --git a/examples/sending_arguments/CMakeLists.txt b/examples/sending_arguments/CMakeLists.txt index bfdc5cc..a129781 100644 --- a/examples/sending_arguments/CMakeLists.txt +++ b/examples/sending_arguments/CMakeLists.txt @@ -1,19 +1,19 @@ cmake_minimum_required(VERSION 3.1.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)