revisions

This commit is contained in:
pls.153 2023-02-25 12:08:53 +01:00
parent c7d631697a
commit 45d6984bec
5 changed files with 12 additions and 10 deletions

View file

@ -10,8 +10,10 @@
(in-package :cl-user)
;; optional, to be set in 'make.lisp' in your app dir
(defvar *ql-libs* nil)
(defvar *require* nil)
(defvar *ql-libs* nil)
(defvar *require* nil)
(defvar *build-type* nil)
(defvar *init-name* nil)
(pushnew :lqml *features*)
@ -86,6 +88,6 @@
(asdf:make-build *asdf-system*
:monolithic t
:type :static-library
:type (or *build-type* :static-library)
:move-here *library-path*
:init-name *init-name*)