Files
SOM/plugins/CalculatorPlugin/CMakeLists.txt
2025-11-12 00:23:19 +00:00

22 lines
506 B
CMake

cmake_minimum_required(VERSION 3.16)
project(CalculatorPlugin VERSION 1.0 LANGUAGES C CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
include(GNUInstallDirs)
find_package(QT NAMES Qt6 REQUIRED COMPONENTS Core)
find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Gui Widgets)
qt_add_plugin(CalculatorPlugin)
target_sources(CalculatorPlugin PRIVATE
CalculatorPlugin.cpp CalculatorPlugin.h
button.cpp button.h
)
target_link_libraries(CalculatorPlugin PRIVATE
Qt::Core
Qt::Gui
Qt::Widgets
)