Skip to content

Commit

Permalink
feat: Add :options to build-app
Browse files Browse the repository at this point in the history
  • Loading branch information
cmpitg committed Jan 16, 2017
1 parent fd6a768 commit 05cf01c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Ulquikit.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2249,19 +2249,21 @@ task "gen-all" => ["gen-src", "gen-docs"]
:error-output error-output
:force-shell force-shell))
(defun buildapp (&key manifest-file entry output systems loads)
(defun buildapp (&key manifest-file entry output systems loads options)
(!cmd (format-str
(str-space
"buildapp --manifest-file ~A"
"--asdf-tree ~A"
"~:[~;~:*~{--load-system '~A' ~}~]"
"~:[~;~:*~{--load '~A' ~}~]"
"~:[~;~:*~{~A ~}~]"
"--entry ~A"
"--output '~A'")
manifest-file
(ulqui-dir-to "generated-src/")
systems ; Only --load-system if `systems` is not nil
loads ; Only --load if `loads` is not nil
options ; Only if `options` is not nil
entry
output)))
Expand Down

0 comments on commit 05cf01c

Please sign in to comment.