mirror-img/mirror-img.asd

21 lines
609 B
Common Lisp

(require "asdf")
(asdf:defsystem "mirror-img"
:version "0.1"
:license "GPLv3"
:author "Jaidyn Ann <jadedctrl@posteo.at>"
:depends-on (:dexador :lquery :split-sequence)
: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")))