35 lines
758 B
Plaintext
35 lines
758 B
Plaintext
|
# Generated from analogclock.pro.
|
||
|
|
||
|
cmake_minimum_required(VERSION 3.14)
|
||
|
project(analogclock LANGUAGES CXX)
|
||
|
|
||
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
||
|
|
||
|
set(CMAKE_AUTOMOC ON)
|
||
|
set(CMAKE_AUTORCC ON)
|
||
|
set(CMAKE_AUTOUIC ON)
|
||
|
|
||
|
set(INSTALL_EXAMPLEDIR "examples/gui/analogclock")
|
||
|
|
||
|
find_package(Qt6 COMPONENTS Core)
|
||
|
find_package(Qt6 COMPONENTS Gui)
|
||
|
|
||
|
add_qt_gui_executable(analogclock
|
||
|
../rasterwindow/rasterwindow.cpp ../rasterwindow/rasterwindow.h
|
||
|
main.cpp
|
||
|
)
|
||
|
target_include_directories(analogclock PUBLIC
|
||
|
../rasterwindow
|
||
|
)
|
||
|
|
||
|
target_link_libraries(analogclock PUBLIC
|
||
|
Qt::Core
|
||
|
Qt::Gui
|
||
|
)
|
||
|
|
||
|
install(TARGETS analogclock
|
||
|
RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}"
|
||
|
BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}"
|
||
|
LIBRARY DESTINATION "${INSTALL_EXAMPLEDIR}"
|
||
|
)
|