File: ieee-floats.asd

package info (click to toggle)
cl-ieee-floats 20160318-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 64 kB
  • sloc: lisp: 127; makefile: 13
file content (13 lines) | stat: -rw-r--r-- 403 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
(defpackage :ieee-floats-system
  (:use :common-lisp :asdf))
(in-package :ieee-floats-system)

(defsystem :ieee-floats
  :components ((:file "ieee-floats")))

(defsystem :ieee-floats-tests
  :description "Convert floating point values to IEEE 754 binary representation"
  :author "Marijn Haverbeke <marijnh@gmail.com>"
  :license "BSD"
  :depends-on (:ieee-floats :eos)
  :components ((:file "tests")))