mirror of https://github.com/qt/qtbase.git
16 lines
359 B
CMake
16 lines
359 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
project(styleplugin LANGUAGES CXX)
|
|
|
|
find_package(Qt6 REQUIRED COMPONENTS Widgets)
|
|
|
|
set(CMAKE_AUTOMOC ON)
|
|
|
|
if(NOT DEFINED INSTALL_EXAMPLESDIR)
|
|
set(INSTALL_EXAMPLESDIR "examples")
|
|
endif()
|
|
|
|
set(INSTALL_EXAMPLEDIR "${INSTALL_EXAMPLESDIR}/widgets/tools/styleplugin")
|
|
|
|
add_subdirectory(stylewindow)
|
|
add_subdirectory(plugin)
|