mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-06 02:30:38 -08:00
fixes to examples 'swank-server', 'advanced-qml-auto-reload'
This commit is contained in:
parent
5cb6ac8384
commit
50de0b4833
6 changed files with 36 additions and 22 deletions
|
|
@ -63,16 +63,17 @@
|
|||
(length (namestring *default-pathname-defaults*))
|
||||
(1+ (position #\/ name :from-end t)))))
|
||||
|
||||
;; load all LQML symbols
|
||||
(dolist (file (list "package" "x" "ecl-ext" "ini" "qml"))
|
||||
(dolist (file (list "package" "x" "ecl-ext" "ini" "qml")) ; load LQML symbols
|
||||
(load (merge-pathnames file "src/lisp/")))
|
||||
|
||||
#-(or android ios)
|
||||
(asdf:make-build "app"
|
||||
:monolithic t
|
||||
:type :static-library
|
||||
:move-here (cc *current* "build/tmp/")
|
||||
:init-name "ini_app")
|
||||
(progn
|
||||
(require :ecl-curl)
|
||||
(asdf:make-build "app"
|
||||
:monolithic t
|
||||
:type :static-library
|
||||
:move-here (cc *current* "build/tmp/")
|
||||
:init-name "ini_app"))
|
||||
|
||||
#+(or android ios)
|
||||
(progn
|
||||
|
|
@ -87,7 +88,8 @@
|
|||
(defvar *require* (list :ecl-curl))
|
||||
(load "platforms/shared/make"))
|
||||
|
||||
;; rename lib
|
||||
;;; rename lib
|
||||
|
||||
(let* ((from #-(or android ios) (cc *current* "build/tmp/app--all-systems.a")
|
||||
#+(or android ios) (cc *library-path* "app--all-systems.a"))
|
||||
(to "libapp.a")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue