Files
html-jen/html-jen.asd
2025-03-31 20:54:37 +03:00

22 lines
690 B
Common Lisp
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
(defsystem html-jen
:author "Emre Akan"
:license "GPLv3"
:depends-on (uiop sb-posix)
:description "Markdown dosyalarından HTML jenerasyonu yapan yazılım."
:pathname "src/"
:components ((:file "paket")
(:file "tanım")
(:file "okur")
(:file "üretim")
(:file "ana"))
:build-operation "program-op"
:build-pathname "../html-üret"
:entry-point "html-jen::ana"
:in-order-to ((test-op (test-op "html-jen/testler"))))
(defsystem "html-jen/testler"
:depends-on ("html-jen")
:pathname "testler/"
:components ((:file "test"))
:perform (test-op (o c) (symbol-call :html-jen/testler :testleri-çalıştır)))