2019-03-20 12:41:37 +00:00
|
|
|
# Generated from stickman.pro.
|
|
|
|
|
2019-06-04 15:08:47 +00:00
|
|
|
cmake_minimum_required(VERSION 3.14)
|
|
|
|
project(stickman LANGUAGES CXX)
|
2019-03-20 12:41:37 +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)
|
2019-03-20 12:41:37 +00:00
|
|
|
|
2020-07-07 13:24:45 +00:00
|
|
|
if(NOT DEFINED INSTALL_EXAMPLESDIR)
|
|
|
|
set(INSTALL_EXAMPLESDIR "examples")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set(INSTALL_EXAMPLEDIR "${INSTALL_EXAMPLESDIR}/widgets/animation/stickman")
|
2019-03-20 12:41:37 +00:00
|
|
|
|
2020-02-04 07:15:50 +00:00
|
|
|
find_package(Qt6 COMPONENTS Core)
|
|
|
|
find_package(Qt6 COMPONENTS Gui)
|
2019-06-14 10:59:07 +00:00
|
|
|
find_package(Qt6 COMPONENTS Widgets)
|
2019-06-04 15:08:47 +00:00
|
|
|
|
2019-06-12 08:21:40 +00:00
|
|
|
add_qt_gui_executable(stickman
|
2019-06-04 15:08:47 +00:00
|
|
|
animation.cpp animation.h
|
|
|
|
graphicsview.cpp graphicsview.h
|
|
|
|
lifecycle.cpp lifecycle.h
|
|
|
|
main.cpp
|
|
|
|
node.cpp node.h
|
|
|
|
rectbutton.cpp rectbutton.h
|
2020-02-04 07:15:50 +00:00
|
|
|
stickman.cpp stickman.h
|
2019-06-04 15:08:47 +00:00
|
|
|
)
|
|
|
|
target_link_libraries(stickman PUBLIC
|
2020-02-04 07:15:50 +00:00
|
|
|
Qt::Core
|
|
|
|
Qt::Gui
|
2019-06-04 15:08:47 +00:00
|
|
|
Qt::Widgets
|
|
|
|
)
|
|
|
|
|
2020-02-04 07:15:50 +00:00
|
|
|
|
|
|
|
# Resources:
|
|
|
|
set(stickman_resource_files
|
|
|
|
"animations/chilling.bin"
|
|
|
|
"animations/dancing.bin"
|
|
|
|
"animations/dead.bin"
|
|
|
|
"animations/jumping.bin"
|
|
|
|
)
|
|
|
|
|
|
|
|
qt6_add_resources(stickman "stickman"
|
|
|
|
PREFIX
|
|
|
|
"/"
|
|
|
|
FILES
|
|
|
|
${stickman_resource_files}
|
|
|
|
)
|
|
|
|
|
2019-06-04 15:08:47 +00:00
|
|
|
install(TARGETS stickman
|
|
|
|
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
|
|
|
)
|