summaryrefslogtreecommitdiffstats
path: root/examples/gui/rasterwindow/CMakeLists.txt
blob: 9ddf9163696cfb6eecb7f26d7bb313c56c0730cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Generated from rasterwindow.pro.

cmake_minimum_required(VERSION 3.14)
project(rasterwindow LANGUAGES CXX)

find_package(Qt5 COMPONENTS Widgets) # special case: add

set(CMAKE_INCLUDE_CURRENT_DIR ON)

set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
set(CMAKE_AUTOUIC ON)

set(INSTALL_EXAMPLEDIR "examples")

add_qt_gui_executable(rasterwindow WIN32 MACOSX_BUNDLE
    main.cpp
    rasterwindow.cpp rasterwindow.h
)
target_include_directories(rasterwindow PUBLIC
    ${CMAKE_CURRENT_SOURCE_DIR}
)
# special case begin
target_link_libraries(rasterwindow PUBLIC
    Qt::Gui
)
# special case end
install(TARGETS rasterwindow
    RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}"
    BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}"
)