mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-06 02:30:38 -08:00
10 lines
233 B
Common Lisp
10 lines
233 B
Common Lisp
(defpackage :app
|
|
(:use :cl :qml)
|
|
(:export))
|
|
|
|
;;; hack, loads empty systems to suppress ASDF runtime error "system not found"
|
|
|
|
(progn
|
|
(push "./" asdf:*central-registry*)
|
|
(asdf:load-system :mgl-pax)
|
|
(asdf:load-system :clog))
|