mirror of
https://github.com/rabbibotton/clog.git
synced 2025-12-06 10:40:45 -08:00
relax asdf on windows for swank
This commit is contained in:
parent
be0001da76
commit
f54d84046b
5 changed files with 14 additions and 1 deletions
8
OCICL.md
vendored
8
OCICL.md
vendored
|
|
@ -21,6 +21,14 @@ sbcl --userinit init --eval "(asdf:load-system :clog/tools)" --eval "(clog-tools
|
||||||
```
|
```
|
||||||
(or replace ecl for sbcl)
|
(or replace ecl for sbcl)
|
||||||
|
|
||||||
|
On Windows:
|
||||||
|
|
||||||
|
```
|
||||||
|
sbcl --userinit init --eval "(setf asdf:*compile-file-failure-behaviour* :warn)" --eval "(asdf:load-system :clog/tools)" --eval "(clog-tools:clog-builder :port 0 :app t)"
|
||||||
|
|
||||||
|
and after first run can use run-ocicl.bat
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
I N S T A L L
|
I N S T A L L
|
||||||
=============
|
=============
|
||||||
|
|
|
||||||
2
clog.asd
vendored
2
clog.asd
vendored
|
|
@ -72,7 +72,7 @@
|
||||||
|
|
||||||
(asdf:defsystem #:clog/tools
|
(asdf:defsystem #:clog/tools
|
||||||
:depends-on (#:clog #:clog-ace #:clog-terminal #:s-base64 #:cl-indentify
|
:depends-on (#:clog #:clog-ace #:clog-terminal #:s-base64 #:cl-indentify
|
||||||
#:definitions #:parenscript #:trivial-main-thread)
|
#:definitions #:parenscript #:trivial-main-thread #:swank)
|
||||||
:pathname "tools/"
|
:pathname "tools/"
|
||||||
:components (;; clog-db-admin app
|
:components (;; clog-db-admin app
|
||||||
(:file "clog-db-admin")
|
(:file "clog-db-admin")
|
||||||
|
|
|
||||||
3
templates/projects/clog/README.md
vendored
3
templates/projects/clog/README.md
vendored
|
|
@ -3,6 +3,9 @@
|
||||||
|
|
||||||
This is a project to do ... something.
|
This is a project to do ... something.
|
||||||
|
|
||||||
|
run-ocicl.bat - run the clog-builder for this project if using ocicl
|
||||||
|
run-ql.bat - run the clog-builder for this project if using QuickLisp
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
Specify license here
|
Specify license here
|
||||||
|
|
|
||||||
1
templates/projects/clog/run-ocicl.bat
vendored
Normal file
1
templates/projects/clog/run-ocicl.bat
vendored
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
sbcl --userinit init --eval "(setf asdf:*compile-file-failure-behaviour* :warn)" --eval "(asdf:load-system :clog/tools)" --eval "(clog-tools:clog-builder :port 0 :app t)"
|
||||||
1
templates/projects/clog/run-ql.bat.lt
vendored
Normal file
1
templates/projects/clog/run-ql.bat.lt
vendored
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
sbcl --eval "(ql:quickload :clog/tools)" --eval "(clog-tools:clog-builder :project :<%= (@ sys-name) %> :port 0 :app t)"
|
||||||
Loading…
Add table
Add a link
Reference in a new issue