File tree Expand file tree Collapse file tree 1 file changed +9
-17
lines changed Expand file tree Collapse file tree 1 file changed +9
-17
lines changed Original file line number Diff line number Diff line change 55Just grab the build from [[https://github.com/lockie/lisp-jam-spring-2023/releases][releases section]].
66
77To run manually:
8- + Install SBCL and Quicklisp
9- + Copy the following libraries to your =local-projects= directory:
10- #+begin_src bash
11- cd ~/quicklisp/local-projects
12- # cl-fast-ecs
13- wget https://gitlab.com/lockie/cl-fast-ecs/-/archive/724a/cl-fast-ecs-724a.zip
14- unzip cl-fast-ecs-724a.zip
15- # cl-liballegro
16- git clone https://github.com/resttime/cl-liballegro
17- # cl-tiled
18- git clone https://github.com/Zulu-Inuoe/cl-tiled
19- #+end_src
20- + Link this project's folder to =local-projects= as well:
8+ + Install SBCL and CLPM
9+ + In the project directory, run
2110 #+begin_src bash
22- cd lisp-jam-spring-2023
23- ln -s `pwd` ~/quicklisp/local-projects/
11+ clpm bundle install
12+ clpm bundle exec sbcl
2413 #+end_src
25- + Run SBCL from =src= subdirectory and start the game:
14+ + In REPL started on previous step, run
2615 #+begin_src lisp
27- (ql:quickload :thoughtbound)
16+ (require 'asdf)
17+ (asdf:load-system 'thoughtbound)
18+ (uiop:chdir "Resources")
19+ (setf *default-pathname-defaults* (truename "./Resources"))
2820 (thoughtbound:main)
2921 #+end_src
3022
You can’t perform that action at this time.
0 commit comments