diff options
author | Vincent Ambo <tazjin@gmail.com> | 2018-01-03T15·54+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2018-01-03T15·54+0100 |
commit | 0d7f845bf5e54f2af6bda4cdf9476bcd66ff08d4 (patch) | |
tree | 2f58992f97d6bb5eba7d3ebaf18602a663e1b9b2 /gemma.asd | |
parent | cc6de0f9c6792413a58031b74190ad358a2b6efd (diff) |
refactor(build): Use ASDF facility for output naming
Turns out there is an easy-to-use :build-pathname parameter to set the output binary name. This kills the hack!
Diffstat (limited to 'gemma.asd')
-rw-r--r-- | gemma.asd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gemma.asd b/gemma.asd index 54e794a1eea3..e9a1d298e843 100644 --- a/gemma.asd +++ b/gemma.asd @@ -21,7 +21,7 @@ :components ((:file "gemma")))) :build-operation program-op - :output-files (program-op (c o) '("build/gemma")) + :build-pathname "gemma" :entry-point "gemma::entrypoint" :description "Gemma is a household task management system" :long-description |