SingleApplication/examples/sending_arguments/CMakeLists.txt
Itay Grudev 076caedc23
Merge pull request #103 from Shatur95/update_cmake_examples_version
Update minimum requered version in examples
2020-05-15 17:01:12 +01:00

20 lines
425 B
CMake

cmake_minimum_required(VERSION 3.7.0)
project(sending_arguments LANGUAGES CXX)
set(CMAKE_AUTOMOC ON)
# SingleApplication base class
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} SingleApplication)