-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapis.asd
37 lines (32 loc) · 1.27 KB
/
apis.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
;;;; ***********************************************************************
;;;;
;;;; Name: apis.asd
;;;; Project: the apis message-passing system
;;;; Purpose: system definition
;;;; Author: mikel evins
;;;; Copyright: 2024 by mikel evins
;;;;
;;;; ***********************************************************************
(in-package :cl-user)
(require :asdf)
;;; ---------------------------------------------------------------------
;;; apis system
;;; ---------------------------------------------------------------------
;;;; apis.asd
(asdf:defsystem #:apis
:serial t
:description "Apis: swarms of threads and processes passing messages"
:author "mikel evins <[email protected]>"
:license "Apache 2.0"
:version (:read-file-form "version.lisp")
:depends-on (
:local-time ; [MIT] https://github.com/dlowe-net/local-time
:bordeaux-threads ; [MIT] https://github.com/sionescu/bordeaux-threads
:queues.simple-cqueue ; [MIT] https://github.com/oconnore/queues
)
:components ((:module "src"
:serial t
:components ((:file "package")
(:file "parameters")
(:file "worker")))))
;;; (asdf:load-system :apis)