12 lines
374 B
Common Lisp
12 lines
374 B
Common Lisp
(in-package #:asdf-user)
|
|
|
|
(defsystem #:nya-balken
|
|
:version "0.1.0"
|
|
:author "John Lorentzson <duuqnd@stacken.kth.se>"
|
|
:depends-on (#:xmls #:cl-base64)
|
|
:build-operation "asdf:program-op"
|
|
:build-pathname "nya-balken"
|
|
:entry-point "se.kth.stacken.nya-balken:main"
|
|
:components ((:file "package")
|
|
(:file "svg-tools")
|
|
(:file "balken")))
|