C
Qt Quick Ultralite 时间轴示例
cmake_minimum_required (VERSION 3.21.1) project(timeline VERSION 0.0.1 LANGUAGES C CXX ASM) if (NOT TARGET Qul::Core) find_package(Qul) endif() qul_add_target(timeline QML_PROJECT mcu_timeline.qmlproject GENERATE_ENTRYPOINT) app_target_setup_os(timeline) if(NOT CMAKE_CROSSCOMPILING AND NOT WIN32) add_custom_command(TARGET timeline COMMAND strip timeline -o timeline.stripped DEPENDS timeline) endif()