add 'my_app/r.lisp' (load system in interpreted mode)

This commit is contained in:
polos 2017-07-24 00:44:28 +02:00
parent d2eec409d4
commit 3c3fcbe5ad
3 changed files with 13 additions and 116 deletions

View file

@ -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).

View file

@ -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:

9
my_app/r.lisp Normal file
View file

@ -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")