From f52c1ec5945d221c1e9125e0ea15fd6dbedb475a Mon Sep 17 00:00:00 2001 From: "pls.153" Date: Sun, 27 Feb 2022 16:29:13 +0100 Subject: [PATCH] add note about adding files to a project --- examples/app-template/readme-build.md | 10 ++++++++++ src/cpp/lqml.cpp | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/examples/app-template/readme-build.md b/examples/app-template/readme-build.md index 08a4a2a..df2920b 100644 --- a/examples/app-template/readme-build.md +++ b/examples/app-template/readme-build.md @@ -10,6 +10,16 @@ Example: Qt5.**12** => import QtQuick 2.**12**. The version number can be omitted in Qt6. +Note +---- + +Every Lisp file under `lisp/` and every qml/image/font/whatever file under +`qml/` is added **automatically** to your Qt project file (both for re-compile +and adding to resources included in the executable). + +So, you only need to **manually** care about the usual ASDF project files in +`app.asd`. + Run desktop ----------- diff --git a/src/cpp/lqml.cpp b/src/cpp/lqml.cpp index e83ac2e..69e762a 100644 --- a/src/cpp/lqml.cpp +++ b/src/cpp/lqml.cpp @@ -7,7 +7,7 @@ #include #include -const char LQML::version[] = "22.2.2"; // Feb 2022 +const char LQML::version[] = "22.2.3"; // Feb 2022 extern "C" void ini_LQML(cl_object);