important: fix compiling of Quicklisp dependencies

This commit is contained in:
pls.153 2022-03-13 12:12:23 +01:00
parent e057ca3502
commit 89227fd150
3 changed files with 5 additions and 4 deletions

View file

@ -1,6 +1,6 @@
(defsystem :app
:serial t
:depends-on ()
:depends-on (:alexandria)
:components ((:file "lisp/package")
(:file "lisp/ui-vars")
(:file "lisp/swank-quicklisp")

View file

@ -16,7 +16,7 @@ lisp.output = tmp/libapp.a
QMAKE_EXTRA_COMPILERS += lisp
PRE_TARGETDEPS += tmp/libapp.a
QT += quick qml
QT += quick qml network
TEMPLATE = app
CONFIG += no_keywords release
DEFINES += INI_LISP

View file

@ -13,8 +13,7 @@
(let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp"
(user-homedir-pathname))))
(when (probe-file quicklisp-init)
(load quicklisp-init)))
(load *ql-libs*))
(load quicklisp-init))))
;;; load ASDF system and collect file names
@ -26,6 +25,8 @@
*source-files*))
(asdf::perform-lisp-load-fasl o c))
(load *ql-libs*) ; eventual dependencies
(asdf:load-system *asdf-system*)
(setf *source-files* (nreverse *source-files*))