mirror-img/mirror-img.asd

21 lines
609 B
Plaintext
Raw Normal View History

2024-05-27 23:46:30 -05:00
(require "asdf")
(asdf:defsystem "mirror-img"
2024-05-24 20:58:37 -05:00
:version "0.1"
:license "GPLv3"
:author "Jaidyn Ann <jadedctrl@posteo.at>"
:depends-on (:dexador :lquery :split-sequence)
2024-05-27 23:46:30 -05:00
:components ((:file "src/mirror-img"))
:in-order-to ((build-op (build-op "mirror-img/unix"))))
(asdf:defsystem "mirror-img/unix"
:version "0.1"
:license "GPLv3"
:author "Jaidyn Ann <jadedctrl@posteo.at>"
:class asdf:program-system
:build-operation "program-op"
:build-pathname "mirror-img"
:entry-point "mirror-img/unix:main"
:depends-on (:mirror-img :unix-opts :cl-strings)
:components ((:file "src/unix")))