changelog shortlog graph tags branches changeset files file revisions raw help

Mercurial > core / annotate 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
539
cf0c1933289f parquet+arrow
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
1
 ;;; arrow.asd --- Apache Arrow Sytem Definitions
cf0c1933289f parquet+arrow
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
2
 (defsystem :arrow
cf0c1933289f parquet+arrow
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
3
   :depends-on (:std :log)
cf0c1933289f parquet+arrow
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
4
   :description "A thin FFI wrapper for Arrow."
cf0c1933289f parquet+arrow
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
5
   :components ((:file "pkg"))
cf0c1933289f parquet+arrow
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
6
   :in-order-to ((test-op (test-op "arrow/tests"))))
cf0c1933289f parquet+arrow
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
7
 
cf0c1933289f parquet+arrow
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
8
 (defsystem :arrow/tests
cf0c1933289f parquet+arrow
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
9
   :depends-on (:std :log :rt :arrow)
cf0c1933289f parquet+arrow
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
10
   :components ((:file "tests"))
cf0c1933289f parquet+arrow
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
11
   :perform (test-op (o c) (symbol-call :rt :do-tests :arrow)))