qt5base-lts/examples/widgets/windowcontainer/CMakeLists.txt

39 lines
935 B
CMake
Raw Normal View History

# Generated from windowcontainer.pro.
cmake_minimum_required(VERSION 3.14)
project(windowcontainer LANGUAGES CXX)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
set(CMAKE_AUTOUIC ON)
set(INSTALL_EXAMPLEDIR "examples/widgets/windowcontainer")
find_package(Qt6 COMPONENTS Core)
find_package(Qt6 COMPONENTS Gui)
find_package(Qt6 COMPONENTS Widgets)
find_package(Qt6 COMPONENTS OpenGL)
add_qt_gui_executable(windowcontainer
../../opengl/openglwindow/openglwindow.cpp ../../opengl/openglwindow/openglwindow.h
windowcontainer.cpp
)
target_include_directories(windowcontainer PUBLIC
../../opengl/openglwindow
)
target_link_libraries(windowcontainer PUBLIC
Qt::Core
Qt::Gui
Qt::OpenGL
Qt::Widgets
)
install(TARGETS windowcontainer
RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}"
BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}"
LIBRARY DESTINATION "${INSTALL_EXAMPLEDIR}"
)