qt6-bb10/examples/widgets/tools/echoplugin/CMakeLists.txt

16 lines
367 B
CMake

cmake_minimum_required(VERSION 3.16)
project(plugandpaint LANGUAGES CXX)
find_package(Qt6 REQUIRED COMPONENTS Core Gui Widgets)
set(CMAKE_AUTOMOC ON)
if(NOT DEFINED INSTALL_EXAMPLESDIR)
set(INSTALL_EXAMPLESDIR "examples")
endif()
set(INSTALL_EXAMPLEDIR "${INSTALL_EXAMPLESDIR}/widgets/tools/echoplugin")
add_subdirectory(plugin)
add_subdirectory(echowindow)