mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-06 02:30:38 -08:00
fix example 'swank-server' to work again on mobile; revisions
This commit is contained in:
parent
fc662c4f48
commit
5f3b251a69
9 changed files with 59 additions and 44 deletions
|
|
@ -17,7 +17,7 @@
|
|||
(let ((name (namestring *load-truename*)))
|
||||
(subseq name
|
||||
(length (namestring *default-pathname-defaults*))
|
||||
(position #\/ name :from-end t))))
|
||||
(1+ (position #\/ name :from-end t)))))
|
||||
|
||||
;; load all LQML symbols
|
||||
(dolist (file (list "package" "x" "ecl-ext" "ini" "qml"))
|
||||
|
|
@ -31,11 +31,11 @@
|
|||
(asdf:make-build "app"
|
||||
:monolithic t
|
||||
:type :static-library
|
||||
:move-here (cc *current* "/build/tmp/")
|
||||
:move-here (cc *current* "build/tmp/")
|
||||
:init-name "ini_app")
|
||||
(let* ((from (cc *current* "/build/tmp/app--all-systems.a"))
|
||||
(let* ((from (cc *current* "build/tmp/app--all-systems.a"))
|
||||
(to "libapp.a")
|
||||
(to* (cc *current* "/build/tmp/" to)))
|
||||
(to* (cc *current* "build/tmp/" to)))
|
||||
(when (probe-file to*)
|
||||
(delete-file to*))
|
||||
(rename-file from to)))
|
||||
|
|
@ -43,9 +43,9 @@
|
|||
#+(or android ios)
|
||||
(progn
|
||||
(defvar *asdf-system* "app")
|
||||
(defvar *ql-libs* (cc *current* "/ql-libs.lisp"))
|
||||
(defvar *ql-libs* (cc *current* "ql-libs.lisp"))
|
||||
(defvar *init-name* "ini_app")
|
||||
(defvar *library-name* (format nil "~A/build-~A/tmp/app"
|
||||
(defvar *library-name* (format nil "~Abuild-~A/tmp/app"
|
||||
*current*
|
||||
#+android "android"
|
||||
#+ios "ios"))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue