Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
clo
cl-site
Commits
bf8e825a
Commit
bf8e825a
authored
Oct 05, 2018
by
Administrator
Browse files
Merge branch 'simplify-system-definition' into 'master'
Simplify the System Definition See merge request
!8
parents
f17bd344
151680a9
Pipeline
#355
failed with stages
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
cl-site.asd
View file @
bf8e825a
;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
(
in-package
:cl-user
)
(
asdf:defsystem
cl-site
(
defsystem
"cl-site"
:name
"cl-site"
:version
"0.0.1"
:maintainer
"C. Yang"
:author
"C. Yang"
:licence
"TBD"
:description
"Static site generator for CLnet, written in CL"
:depends-on
(
:cl-mustache
)
:components
((
:module
source
:pathname
""
:serial
t
:depends-on
(
package
)
:components
((
:file
"globals"
)
(
:file
"helpers"
)
(
:file
"process"
)
(
:file
"main"
)))
(
:module
package
:pathname
""
:components
((
:file
"package"
))))
:description
"Static site generator for CLnet, written in CL."
:depends-on
(
"cl-mustache"
)
:serial
t
:components
((
:file
"package"
)
(
:file
"globals"
)
(
:file
"helpers"
)
(
:file
"process"
)
(
:file
"main"
))
:in-order-to
((
asdf:test-op
(
asdf:test-op
cl-site/t
))))
(
asdf:
defsystem
cl-site/t
:defsystem-depends-on
(
prove-asdf
)
:depends-on
(
cl-site
prove
)
:components
((
:module
site
:pathname
"t
/
"
:components
((
:test-file
"site"
))
))
(
defsystem
cl-site/t
:defsystem-depends-on
(
"
prove-asdf
"
)
:depends-on
(
"
cl-site
"
"prove"
)
:pathname
"t"
:components
((
:test-file
"site"
))
:perform
(
asdf:test-op
(
op
c
)
(
uiop:symbol-call
:prove-asdf
'run-test-system
c
)))
...
...
Vincent Dardel
@vdardel
mentioned in issue
#4
·
Oct 05, 2018
mentioned in issue
#4
mentioned in issue #4
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment