diff --git a/examples/M-modules/web-kit-engine/README.txt b/examples/M-modules/web-kit-engine/README.txt index 5f964aa..b3b8411 100644 --- a/examples/M-modules/web-kit-engine/README.txt +++ b/examples/M-modules/web-kit-engine/README.txt @@ -8,116 +8,3 @@ You'll need: - compile module :webkit with Qt 5.5 - compile ./lib/* with Qt 5.5 - compile EQL5 (including module :webengine) with Qt 5.8+ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -NOTE -==== - -Made for April (not the girl). diff --git a/my_app/README.txt b/my_app/README.txt index b75ea80..771e940 100644 --- a/my_app/README.txt +++ b/my_app/README.txt @@ -31,14 +31,15 @@ Build (using ASDF with dependencies): $ qmake $ make (MSVC: nmake) + Now you should find a "my_app" executable, containing everything in one exe. + Please note files: my-app.asd ; define system package.lisp ; example package dependencies.lisp ; for Quicklisp (used in "run" and "make-ASDF") - run.lisp ; load system - - Now you should find a "my_app" executable, containing everything in one exe. + run.lisp ; load system (compiled) + r.lisp ; load system (interpreted, for development) Notes: diff --git a/my_app/r.lisp b/my_app/r.lisp new file mode 100644 index 0000000..1e5c2f0 --- /dev/null +++ b/my_app/r.lisp @@ -0,0 +1,9 @@ +;;; this is the same as 'run.lisp', except for compiling +;;; (for development only) + +;; same for all systems +(load "dependencies") ; for QL dependencies +(load "package") + +;; system files +(load "lisp/my.lisp")