mirror of
https://gitlab.com/vindarel/ciel.git
synced 2026-04-27 07:11:10 -07:00
parent
7ebde8ea2c
commit
24f627c64f
1 changed files with 7 additions and 1 deletions
8
ciel.asd
8
ciel.asd
|
|
@ -4,6 +4,13 @@
|
|||
|
||||
(require "asdf") ;; for CI
|
||||
|
||||
;; We need to load cl+ssl before we can load and compile this .asd file.
|
||||
;; We need it to build the binary with asdf:make, using Deploy
|
||||
;; (see its use below).
|
||||
(unless (find-package :cl+ssl)
|
||||
(warn "Loading ciel.asd: we don't find the package CL+SSL. You need to install it before loading this .asd file.~&"))
|
||||
(require "cl+ssl")
|
||||
|
||||
(asdf:defsystem "ciel"
|
||||
:description "CIEL Is an Extended Lisp (Common Lisp, batteries included)."
|
||||
:version "0.1"
|
||||
|
|
@ -162,7 +169,6 @@
|
|||
:entry-point "ciel::main")
|
||||
|
||||
;; Don't ship libssl, rely on the target OS'.
|
||||
;; XXX: we need to load cl+ssl before we can compile and load this .asd file :/
|
||||
#+linux (deploy:define-library cl+ssl::libssl :dont-deploy T)
|
||||
#+linux (deploy:define-library cl+ssl::libcrypto :dont-deploy T)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue