changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/core.asd

changeset 698: 96958d3eb5b0
parent: 123a7ef21ae3
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 (pushnew :core *features*)
2 (defsystem :core
3  :depends-on (:std :log :io :obj :net :cry :parse :syn :dat)
4  :components ((:file "core"))
5  :build-pathname "core"
6  :build-operation monolithic-compile-bundle-op)
7 
8 (defsystem :core/tests
9  :depends-on (:rt :std/tests :log/tests :rt/tests :cli/tests
10  :dat/tests :rocksdb/tests :btrfs/tests :uring/tests
11  :doc/tests :alsa/tests :nlp/tests :skel/tests
12  :syn/tests :organ/tests :packy/tests :obj/tests
13  :tree-sitter/tests :xkb/tests :ssh2/tests :sndfile/tests
14  :zstd/tests :uring/tests :blake3/tests :ublk/tests
15  :parse/tests :pod/tests :rdb/tests :rt/tests
16  :aud/tests :cry/tests :krypt/tests :io/tests
17  :gui/tests :net/tests :vc/tests)
18  :components ((:file "tests"))
19  :build-pathname "tests"
20  :build-operation monolithic-compile-bundle-op)
21 
22 (defsystem :core/bench
23  :depends-on (:std :core/tests :rt :obj :dat)
24  :components ((:module "bench"
25  :components ((:file "pkg")
26  (:file "tpc-h"))))
27  :build-pathname "bench"
28  :build-operation monolithic-compile-bundle-op)
29 
30 (pushnew :lib *features*)
31 (defsystem :core/lib
32  :depends-on (:cli :log :dat :doc
33  :nlp :skel :syn :organ
34  :packy :obj :net :io
35  :parse :pod :rdb :rt
36  :aud :cry :krypt :gui)
37  :build-operation monolithic-compile-bundle-op
38  :build-pathname "lib")
39 
40 (defsystem :core/ffi
41  :depends-on (:alsa :blake3 :btrfs :keyutils
42  :keyutils :readline :rocksdb :rustls
43  :sndfile :ssh2 :tree-sitter :ublk
44  :uring :xkb :zstd)
45  :build-operation monolithic-compile-bundle-op
46  :build-pathname "ffi")