changelog shortlog graph tags branches changeset file revisions annotate raw help

Mercurial > core / lisp/ffi/rustls/rustls.asd

revision 361: bcfb3e63dff2
child 362: b1f78dffbcdd
     1.1--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2+++ b/lisp/ffi/rustls/rustls.asd	Thu May 23 00:21:57 2024 -0400
     1.3@@ -0,0 +1,28 @@
     1.4+;;; rustls.asd --- RUSTLS FFI bindings
     1.5+
     1.6+;;
     1.7+
     1.8+;;; Commentary:
     1.9+
    1.10+;; 
    1.11+
    1.12+;;; Code:
    1.13+(eval-when (:compile-toplevel :load-toplevel :execute)
    1.14+  (require :sb-grovel))
    1.15+
    1.16+(defpackage :rustls.sys
    1.17+  (:use :cl :asdf :sb-grovel :sb-alien))
    1.18+
    1.19+(in-package :rustls.sys)
    1.20+
    1.21+(defsystem :rustls
    1.22+  :depends-on (:sb-grovel :std)
    1.23+  :components ((:file "pkg")
    1.24+               (grovel-constants-file "constants"
    1.25+                                      :package :rustls))
    1.26+  :in-order-to ((test-op (test-op "rustls/tests"))))
    1.27+
    1.28+(defsystem :rustls/tests
    1.29+  :depends-on (:rt :rustls)
    1.30+  :components ((:file "tests"))
    1.31+  :perform (test-op (op c) (uiop:symbol-call :rt :do-tests :rustls)))