mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-15 06:41:25 -08:00
revisions
This commit is contained in:
parent
994a1686a9
commit
0b30cce28d
6 changed files with 7 additions and 10 deletions
|
|
@ -14,7 +14,7 @@ Run
|
||||||
---
|
---
|
||||||
|
|
||||||
```
|
```
|
||||||
$ lqml ~/slime/qml-start-swank.lisp
|
$ lqml ~/slime/lqml-start-swank.lisp
|
||||||
$ emacs run.lisp
|
$ emacs run.lisp
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
|
|
@ -5,7 +5,7 @@ Prepare
|
||||||
If you use Qt versions prior to 5.15, you need to adapt the QML module version
|
If you use Qt versions prior to 5.15, you need to adapt the QML module version
|
||||||
to your minor Qt version in file `qml/main.qml`.
|
to your minor Qt version in file `qml/main.qml`.
|
||||||
|
|
||||||
Example: Qt5.**12** -> import QtQuick 2.**12**.
|
Example: Qt5.**12** => import QtQuick 2.**12**.
|
||||||
|
|
||||||
The version number can be omitted in Qt6.
|
The version number can be omitted in Qt6.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -39,13 +39,10 @@
|
||||||
(defun cc (&rest args)
|
(defun cc (&rest args)
|
||||||
(apply 'concatenate 'string args))
|
(apply 'concatenate 'string args))
|
||||||
|
|
||||||
#+android
|
#+(or android ios)
|
||||||
(load (merge-pathnames "platforms/android/cross-compile"))
|
(load (merge-pathnames (format nil "platforms/~A/cross-compile"
|
||||||
|
#+android "android"
|
||||||
#+ios
|
#+ios "ios")))
|
||||||
(let ((cross-compile (merge-pathnames "platforms/ios/cross-compile")))
|
|
||||||
(ext:run-program (cc (namestring cross-compile) ".sh") nil)
|
|
||||||
(load cross-compile))
|
|
||||||
|
|
||||||
(setf *load-verbose* nil
|
(setf *load-verbose* nil
|
||||||
*compile-verbose* t)
|
*compile-verbose* t)
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@ and add the following below that line:
|
||||||
```
|
```
|
||||||
* run second script
|
* run second script
|
||||||
```
|
```
|
||||||
`./2-make-ecl-ios.sh`
|
./2-make-ecl-ios.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
Now you should have your cross-compiled ECL under `~/ecl/ios/ecl-ios/`, and
|
Now you should have your cross-compiled ECL under `~/ecl/ios/ecl-ios/`, and
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue