forked from RDTK/generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-generator.commandline-interface.asd
37 lines (30 loc) · 1.75 KB
/
build-generator.commandline-interface.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
32
33
34
35
36
37
;;;; build-generator.commandline-interface.asd --- System definition for generator binary.
;;;;
;;;; Copyright (C) 2013-2019 Jan Moringen
;;;;
;;;; Author: Jan Moringen <[email protected]>
(defsystem "build-generator.commandline-interface"
:description "Commandline interface 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"
(:version "let-plus" "0.2")
(:version "more-conditions" "0.2")
(:version "configuration.options" "0.10")
(:version "configuration.options-syntax-ini" "0.10")
(:version "configuration.options-and-puri" "0.10")
(:version "build-generator" (:read-file-form "version-string.sexp"))
(:version "build-generator.more-conditions-patch" (:read-file-form "version-string.sexp"))
(:version "build-generator.commands" (:read-file-form "version-string.sexp")))
:components ((:module "commandline-interface"
:pathname "src/commandline-interface"
:serial t
:components ((:file "package")
(:file "value-types")
(:file "configuration")
(:file "main"))))
:build-operation program-op
:build-pathname "build-generator"
:entry-point "BUILD-GENERATOR.COMMANDLINE-INTERFACE:MAIN")