-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathhypergeometrica-manager.asd
More file actions
34 lines (32 loc) · 1.31 KB
/
hypergeometrica-manager.asd
File metadata and controls
34 lines (32 loc) · 1.31 KB
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
;;;; hypergeometrica-manager.asd
;;;;
;;;; Copyright (c) 2024 Robert Smith
(asdf:defsystem #:hypergeometrica-manager
:description "Manager process for running large Hypergeometrica calculations."
:author "Robert Smith <robert@stylewarning.com>"
:license "BSD 3-clause (See LICENSE.txt)"
:depends-on (#:clingon #:uiop #:bordeaux-threads #:sb-bsd-sockets)
; :in-order-to ((asdf:test-op (asdf:test-op #:hypergeometrica-manager/tests)))
:around-compile (lambda (compile)
(let (#+sbcl (sb-ext:*derive-function-types* t))
(funcall compile)))
:pathname "src-manager/"
:serial t
:components ((:file "package")
(:file "main"))
:build-operation "program-op"
:build-pathname "hypergeometrica-manager"
:entry-point "hypergeometrica-manager:main")
(asdf:defsystem #:hypergeometrica-manager/tests
:description "Tests for HYPERGEOMETRICA-MANAGER."
:author "Robert Smith <robert@stylewarning.com>"
:license "BSD 3-clause (See LICENSE.txt)"
:defsystem-depends-on (#:uiop)
:depends-on (#:hypergeometrica-manager
#:fiasco)
:perform (asdf:test-op (o s)
#+ignore
(uiop:symbol-call '#:hypergeometrica-tests
'#:test-hypergeometrica))
:serial t
:components ())