C

Qt Quick Ultralite timeline Example

cmake_minimum_required (VERSION 3.15)

project(timeline VERSION 0.0.1 LANGUAGES C CXX ASM ASM_MASM)
if (NOT TARGET Qul::Core)
    find_package(Qul)
endif()

qul_add_target(timeline)
qul_target_qml_sources(timeline timeline.qml)
target_link_libraries(timeline PRIVATE
    Qul::Timeline
)
app_target_setup_os(timeline)
app_target_default_entrypoint(timeline timeline)

if(NOT CMAKE_CROSSCOMPILING AND NOT WIN32)
add_custom_command(TARGET timeline
    COMMAND strip timeline -o timeline.stripped
    DEPENDS timeline)
endif()