Skip to content
asdf-encodings.asd 762 B
Newer Older
;;; -*- Mode: Lisp ; Base: 10 ; Syntax: ANSI-Common-Lisp -*-
Francois-Rene Rideau's avatar
Francois-Rene Rideau committed
  :defsystem-depends-on (:asdf)
  :description "Portable interface to character encodings and your implementation's external-format"
  :components
  ((:file "pkgdcl")
   (:file "encodings" :depends-on ("pkgdcl"))
   (:file "autodetect" :depends-on ("pkgdcl"))
   (:file "asdf-support" :depends-on ("pkgdcl"))
   (:file "initialization" :depends-on ("pkgdcl"))))

Francois-Rene Rideau's avatar
Francois-Rene Rideau committed
(unless (find-symbol (string :component-encoding) :asdf)
  (error "asdf-encodings requires asdf 2.20.18 or later"))

(defmethod perform ((op test-op) (system (eql (find-system :asdf-encodings))))
  (asdf:load-system :asdf-encodings-test)
  (funcall (asdf::find-symbol* :test-suite :asdf-encodings-test)))