mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-06 02:30:38 -08:00
important: fix compiling of Quicklisp dependencies
This commit is contained in:
parent
e057ca3502
commit
89227fd150
3 changed files with 5 additions and 4 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
(defsystem :app
|
(defsystem :app
|
||||||
:serial t
|
:serial t
|
||||||
:depends-on ()
|
:depends-on (:alexandria)
|
||||||
:components ((:file "lisp/package")
|
:components ((:file "lisp/package")
|
||||||
(:file "lisp/ui-vars")
|
(:file "lisp/ui-vars")
|
||||||
(:file "lisp/swank-quicklisp")
|
(:file "lisp/swank-quicklisp")
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ lisp.output = tmp/libapp.a
|
||||||
QMAKE_EXTRA_COMPILERS += lisp
|
QMAKE_EXTRA_COMPILERS += lisp
|
||||||
PRE_TARGETDEPS += tmp/libapp.a
|
PRE_TARGETDEPS += tmp/libapp.a
|
||||||
|
|
||||||
QT += quick qml
|
QT += quick qml network
|
||||||
TEMPLATE = app
|
TEMPLATE = app
|
||||||
CONFIG += no_keywords release
|
CONFIG += no_keywords release
|
||||||
DEFINES += INI_LISP
|
DEFINES += INI_LISP
|
||||||
|
|
|
||||||
|
|
@ -13,8 +13,7 @@
|
||||||
(let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp"
|
(let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp"
|
||||||
(user-homedir-pathname))))
|
(user-homedir-pathname))))
|
||||||
(when (probe-file quicklisp-init)
|
(when (probe-file quicklisp-init)
|
||||||
(load quicklisp-init)))
|
(load quicklisp-init))))
|
||||||
(load *ql-libs*))
|
|
||||||
|
|
||||||
;;; load ASDF system and collect file names
|
;;; load ASDF system and collect file names
|
||||||
|
|
||||||
|
|
@ -26,6 +25,8 @@
|
||||||
*source-files*))
|
*source-files*))
|
||||||
(asdf::perform-lisp-load-fasl o c))
|
(asdf::perform-lisp-load-fasl o c))
|
||||||
|
|
||||||
|
(load *ql-libs*) ; eventual dependencies
|
||||||
|
|
||||||
(asdf:load-system *asdf-system*)
|
(asdf:load-system *asdf-system*)
|
||||||
|
|
||||||
(setf *source-files* (nreverse *source-files*))
|
(setf *source-files* (nreverse *source-files*))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue