-
Notifications
You must be signed in to change notification settings - Fork 3
/
build-generator.commandline-options.asd
31 lines (26 loc) · 1.31 KB
/
build-generator.commandline-options.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
;;;; build-generator.commandline-options.asd --- System definition for build-generator.commandline-options.
;;;;
;;;; Copyright (C) 2017, 2018, 2019 Jan Moringen
;;;;
;;;; Author: Jan Moringen <[email protected]>
(defsystem "build-generator.commandline-options"
:description "Commandline options of the generator program."
:license "GPLv3" ; see COPYING file for details.
:author "Jan Moringen <[email protected]>"
:maintainer "Jan Moringen <[email protected]>"
:version (:read-file-form "version-string.sexp")
:depends-on ("alexandria"
"split-sequence"
(:version "let-plus" "0.2")
(:version "more-conditions" "0.2")
(:version "configuration.options" "0.10"))
:components ((:module "commandline-options"
:pathname "src/commandline-options"
:serial t
:components ((:file "package")
(:file "types")
(:file "conditions")
(:file "protocol")
(:file "options")
(:file "macros")
(:file "help")))))