2019-03-18 18:26:24 +00:00
|
|
|
# Generated from analogclock.pro.
|
|
|
|
|
2019-06-04 15:08:47 +00:00
|
|
|
cmake_minimum_required(VERSION 3.14)
|
|
|
|
project(analogclock LANGUAGES CXX)
|
2019-03-18 18:26:24 +00:00
|
|
|
|
2019-06-04 15:08:47 +00:00
|
|
|
|
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
|
|
|
|
set(CMAKE_AUTOMOC ON)
|
|
|
|
set(CMAKE_AUTORCC ON)
|
|
|
|
set(CMAKE_AUTOUIC ON)
|
|
|
|
|
2020-07-07 13:24:45 +00:00
|
|
|
if(NOT DEFINED INSTALL_EXAMPLESDIR)
|
|
|
|
set(INSTALL_EXAMPLESDIR "examples")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set(INSTALL_EXAMPLEDIR "${INSTALL_EXAMPLESDIR}/gui/gui_analogclock") # special case
|
2020-02-04 07:15:50 +00:00
|
|
|
|
|
|
|
find_package(Qt6 COMPONENTS Core)
|
|
|
|
find_package(Qt6 COMPONENTS Gui)
|
|
|
|
find_package(Qt6 COMPONENTS Widgets) # special case: add
|
2019-06-04 15:08:47 +00:00
|
|
|
|
2020-10-16 09:55:24 +00:00
|
|
|
qt_add_executable(gui_analogclock # special case: renamed target
|
2019-06-04 15:08:47 +00:00
|
|
|
../rasterwindow/rasterwindow.cpp ../rasterwindow/rasterwindow.h
|
|
|
|
main.cpp
|
2019-03-18 18:26:24 +00:00
|
|
|
)
|
2020-10-26 15:22:32 +00:00
|
|
|
set_target_properties(gui_analogclock PROPERTIES # special case
|
|
|
|
WIN32_EXECUTABLE TRUE
|
|
|
|
MACOSX_BUNDLE TRUE
|
|
|
|
)
|
2020-02-04 07:15:50 +00:00
|
|
|
target_include_directories(gui_analogclock PUBLIC # special case
|
2019-06-04 15:08:47 +00:00
|
|
|
../rasterwindow
|
|
|
|
)
|
|
|
|
# special case begin
|
2020-02-04 07:15:50 +00:00
|
|
|
target_link_libraries(gui_analogclock PUBLIC # special case
|
2019-06-04 15:08:47 +00:00
|
|
|
Qt::Gui
|
|
|
|
)
|
|
|
|
# special case end
|
2019-03-18 18:26:24 +00:00
|
|
|
|
2020-02-04 07:15:50 +00:00
|
|
|
target_link_libraries(gui_analogclock PUBLIC # special case
|
|
|
|
Qt::Core
|
|
|
|
Qt::Gui
|
|
|
|
)
|
|
|
|
|
|
|
|
install(TARGETS gui_analogclock # special case
|
2019-06-04 15:08:47 +00:00
|
|
|
RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}"
|
|
|
|
BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}"
|
2019-06-12 08:21:40 +00:00
|
|
|
LIBRARY DESTINATION "${INSTALL_EXAMPLEDIR}"
|
2019-06-04 15:08:47 +00:00
|
|
|
)
|