changelog shortlog graph tags branches changeset files revisions annotate raw help

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

changeset 698: 96958d3eb5b0
parent: cf0c1933289f
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 ;;; arrow.asd --- Apache Arrow Sytem Definitions
2 (defsystem :arrow
3  :depends-on (:std :log)
4  :description "A thin FFI wrapper for Arrow."
5  :components ((:file "pkg"))
6  :in-order-to ((test-op (test-op "arrow/tests"))))
7 
8 (defsystem :arrow/tests
9  :depends-on (:std :log :rt :arrow)
10  :components ((:file "tests"))
11  :perform (test-op (o c) (symbol-call :rt :do-tests :arrow)))