qt6-bb10/examples/widgets/mainwindows/mainwindow/CMakeLists.txt

30 lines
633 B
CMake

# Generated from mainwindow.pro.
cmake_minimum_required(VERSION 3.14)
project(mainwindow LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
set(CMAKE_AUTOUIC ON)
set(INSTALL_EXAMPLEDIR "examples")
find_package(Qt5 COMPONENTS Widgets)
add_executable(mainwindow WIN32 MACOSX_BUNDLE
colorswatch.cpp colorswatch.h
main.cpp
mainwindow.cpp mainwindow.h mainwindow.qrc
toolbar.cpp toolbar.h
)
target_link_libraries(mainwindow PUBLIC
Qt::Widgets
)
install(TARGETS mainwindow
RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}"
BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}"
)