From 35309337aacac2eac7d7215e526bddcf7647b8cf Mon Sep 17 00:00:00 2001 From: Thomas Vanbesien Date: Wed, 11 Mar 2026 11:02:24 +0100 Subject: Initial project setup: Qt 6.10.2 TCP client library for Alchemie XPL2 protocol - Static library (src/) with QML singleton Xpl2Client for TCP communication - Qt Quick demo app (demo/) with connection UI, command input, and response log --- demo/CMakeLists.txt | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 demo/CMakeLists.txt (limited to 'demo/CMakeLists.txt') diff --git a/demo/CMakeLists.txt b/demo/CMakeLists.txt new file mode 100644 index 0000000..f85639b --- /dev/null +++ b/demo/CMakeLists.txt @@ -0,0 +1,15 @@ +qt_add_executable(QtXpl2Demo main.cpp) + +qt_add_qml_module( + QtXpl2Demo + URI + QtXpl2Demo + VERSION + 1.0 + QML_FILES + Main.qml) + +set_target_properties(QtXpl2Demo PROPERTIES RUNTIME_OUTPUT_DIRECTORY + "${PROJECT_BINARY_DIR}/bin") + +target_link_libraries(QtXpl2Demo PRIVATE Qt6::Quick QtXpl2plugin) -- cgit v1.2.3