mirror of
https://github.com/itay-grudev/SingleApplication.git
synced 2024-11-15 20:25:43 +08:00
22 lines
465 B
CMake
22 lines
465 B
CMake
cmake_minimum_required(VERSION 3.7.0)
|
|
|
|
project(calculator LANGUAGES CXX)
|
|
|
|
set(CMAKE_AUTOMOC ON)
|
|
|
|
# SingleApplication base class
|
|
set(QAPPLICATION_CLASS QApplication)
|
|
add_subdirectory(../.. SingleApplication)
|
|
|
|
find_package(Qt${QT_DEFAULT_MAJOR_VERSION} COMPONENTS Core REQUIRED)
|
|
|
|
add_executable(${PROJECT_NAME}
|
|
button.h
|
|
calculator.h
|
|
button.cpp
|
|
calculator.cpp
|
|
main.cpp
|
|
)
|
|
|
|
target_link_libraries(${PROJECT_NAME} SingleApplication::SingleApplication)
|