-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcxx-eigen.asd
executable file
·33 lines (29 loc) · 1.04 KB
/
cxx-eigen.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
#|
This file is a part of cl-eigen project.
Copyright (c) 2018 Islam Omar ([email protected])
|#
(defpackage :cxx-eigen/system
(:use :cl :asdf))
(in-package :cxx-eigen/system)
(defsystem :cxx-eigen
:version "1.0"
:author "Islam Omar"
:license "MIT"
:depends-on (:cxx)
:components ((:file "package")
(:module "src"
:components ((:file "cxx-eigen"))))
:description "Common Lisp eigen Interoperation"
:long-description
#.(with-open-file (stream (merge-pathnames
#p"README.markdown"
(or *load-pathname* *compile-file-pathname*))
:if-does-not-exist nil
:direction :input)
(when stream
(let ((seq (make-array (file-length stream)
:element-type 'character
:fill-pointer t)))
(setf (fill-pointer seq) (read-sequence seq stream))
seq)))
:in-order-to ((test-op (test-op "cxx-eigen-test"))))