mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-15 14:51:14 -08:00
add Windows platform (desktop only)
This commit is contained in:
parent
888c4be14a
commit
b4e37a6874
22 changed files with 215 additions and 29 deletions
|
|
@ -46,6 +46,7 @@
|
|||
;;; compile ASDF system
|
||||
|
||||
(require :asdf)
|
||||
(require :cmp)
|
||||
|
||||
(push (merge-pathnames "../")
|
||||
asdf:*central-registry*)
|
||||
|
|
@ -86,9 +87,12 @@
|
|||
|
||||
;;; rename lib
|
||||
|
||||
(let* ((from #-mobile (cc *current* "build/tmp/app--all-systems.a")
|
||||
(let* ((from #-mobile (cc *current* (format nil "build/tmp/app--all-systems.~A"
|
||||
#+msvc "lib"
|
||||
#-msvc "a"))
|
||||
#+mobile (cc *library-path* "app--all-systems.a"))
|
||||
(to "libapp.a")
|
||||
(to #+msvc "app.lib"
|
||||
#-msvc "libapp.a")
|
||||
(to* #-mobile (cc *current* "build/tmp/" to)
|
||||
#+mobile (cc *library-path* to)))
|
||||
(when (probe-file to*)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue