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);