changelog shortlog graph tags branches changeset files revisions annotate raw help

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

changeset 698: 96958d3eb5b0
parent: 0f0e5f9b5c55
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 ;;; ssh2.asd --- SSH2 FFI bindings
2 
3 ;;
4 
5 ;;; Commentary:
6 
7 ;;
8 
9 ;;; Code:
10 (eval-when (:compile-toplevel :load-toplevel :execute)
11  (require :sb-grovel))
12 
13 (defpackage :ssh2.sys
14  (:use :cl :asdf :sb-grovel :sb-alien))
15 
16 (in-package :ssh2.sys)
17 
18 (defsystem :ssh2
19  :depends-on (:sb-grovel :std)
20  :components ((:file "pkg")
21  (grovel-constants-file "constants"
22  :package :ssh2))
23  :in-order-to ((test-op (test-op "ssh2/tests"))))
24 
25 (defsystem :ssh2/tests
26  :depends-on (:rt :ssh2)
27  :components ((:file "tests"))
28  :perform (test-op (op c) (uiop:symbol-call :rt :do-tests :ssh2)))