test-translator.asd 421 B

1234567891011121314151617
  1. ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
  2. (defpackage #:test-translator-asd
  3. (:use :cl :asdf))
  4. (in-package :test-translator-asd)
  5. (defsystem test-translator
  6. :name "test-translator"
  7. :version "0.0.0"
  8. :maintainer "Flavio Cruz"
  9. :author "Flavio Cruz"
  10. :license "GPL v3.0"
  11. :description "Translator used for the tests."
  12. :depends-on (:tree-translator)
  13. :components ((:file "test-translator")))