Initial commit, ACM PEARC25 and PEARC26 chosen restaurants work.
Committer: hpcdisrespecter <noreply@git.asperger.pro> modified: .gitignore modified: README.md new file: menus/peoples-organic.sexp new file: menus/townhall-shortnorth.sexp new file: organic-cafe.asd new file: run.lisp new file: src/package.lisp new file: src/planner.lisp new file: test/tests.lisp
This commit is contained in:
15
organic-cafe.asd
Normal file
15
organic-cafe.asd
Normal file
@@ -0,0 +1,15 @@
|
||||
(asdf:defsystem "organic-cafe"
|
||||
:description "A small S-expression DSL and budget-aware cafe meal planner."
|
||||
:version "0.1.0"
|
||||
:license "WTFPL-2.0"
|
||||
:serial t
|
||||
:components ((:file "src/package")
|
||||
(:file "src/planner")))
|
||||
|
||||
(asdf:defsystem "organic-cafe/tests"
|
||||
:depends-on ("organic-cafe")
|
||||
:serial t
|
||||
:components ((:file "test/tests"))
|
||||
:perform (asdf:test-op (operation component)
|
||||
(declare (ignore operation component))
|
||||
(uiop:symbol-call :organic-cafe/tests :run-tests)))
|
||||
Reference in New Issue
Block a user