C
Qt Quick Ultralite 文本输入示例
cmake_minimum_required (VERSION 3.21.1) project(text_input VERSION 0.0.1 LANGUAGES C CXX ASM) if (NOT TARGET Qul::Core) find_package(Qul) endif() qul_add_target(text_input QML_PROJECT text_input.qmlproject GENERATE_ENTRYPOINT) app_target_setup_os(text_input) qul_add_target(text_input_spark QML_PROJECT text_input_spark.qmlproject GENERATE_ENTRYPOINT) app_target_setup_os(text_input_spark) qul_add_target(text_input_no_vkb QML_PROJECT text_input_no_vkb.qmlproject GENERATE_ENTRYPOINT) app_target_setup_os(text_input_no_vkb)