SingleApplication/examples/sending_arguments/CMakeLists.txt

20 lines
425 B
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.1.0)
2020-05-15 23:42:56 +08:00
project(sending_arguments LANGUAGES CXX)
set(CMAKE_AUTOMOC ON)
# SingleApplication base class
2020-05-15 23:42:56 +08:00
set(QAPPLICATION_CLASS QCoreApplication)
add_executable(${PROJECT_NAME}
main.cpp
messagereceiver.cpp
messagereceiver.h
main.cpp
2020-05-15 23:42:56 +08:00
)
find_package(Qt5 COMPONENTS Core REQUIRED)
add_subdirectory(../.. SingleApplication)
2020-05-15 23:42:56 +08:00
target_link_libraries(${PROJECT_NAME} SingleApplication)