2020-02-04 07:15:50 +00:00
|
|
|
# Generated from plugin.pro.
|
|
|
|
|
|
|
|
cmake_minimum_required(VERSION 3.14)
|
|
|
|
project(simplestyleplugin LANGUAGES CXX)
|
|
|
|
|
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
|
|
|
|
set(CMAKE_AUTOMOC ON)
|
|
|
|
set(CMAKE_AUTORCC ON)
|
|
|
|
set(CMAKE_AUTOUIC ON)
|
|
|
|
|
2020-07-07 13:24:45 +00:00
|
|
|
if(NOT DEFINED INSTALL_EXAMPLESDIR)
|
|
|
|
set(INSTALL_EXAMPLESDIR "examples")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set(INSTALL_EXAMPLEDIR "${INSTALL_EXAMPLESDIR}/widgets/tools/styleplugin/styles")
|
2020-02-04 07:15:50 +00:00
|
|
|
|
|
|
|
find_package(Qt6 COMPONENTS Core)
|
|
|
|
find_package(Qt6 COMPONENTS Gui)
|
|
|
|
find_package(Qt6 COMPONENTS Widgets)
|
2019-03-20 12:41:37 +00:00
|
|
|
|
2020-07-07 13:24:45 +00:00
|
|
|
qt_add_plugin(simplestyleplugin)
|
|
|
|
target_sources(simplestyleplugin PRIVATE
|
2019-06-04 15:08:47 +00:00
|
|
|
simplestyle.cpp simplestyle.h
|
|
|
|
simplestyleplugin.cpp simplestyleplugin.h
|
2019-03-20 12:41:37 +00:00
|
|
|
)
|
2020-02-04 07:15:50 +00:00
|
|
|
target_link_libraries(simplestyleplugin PUBLIC
|
|
|
|
Qt::Core
|
|
|
|
Qt::Gui
|
|
|
|
Qt::Widgets
|
|
|
|
)
|
2019-03-20 12:41:37 +00:00
|
|
|
|
2020-02-04 07:15:50 +00:00
|
|
|
install(TARGETS simplestyleplugin
|
|
|
|
RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}"
|
|
|
|
BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}"
|
|
|
|
LIBRARY DESTINATION "${INSTALL_EXAMPLEDIR}"
|
|
|
|
)
|