Skip to content

Commit 35d2f3e

Browse files
committed
Updated build instructions in readme
1 parent b2946f4 commit 35d2f3e

File tree

1 file changed

+9
-17
lines changed

1 file changed

+9
-17
lines changed

README.org

Lines changed: 9 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,18 @@
55
Just grab the build from [[https://github.com/lockie/lisp-jam-spring-2023/releases][releases section]].
66

77
To 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

0 commit comments

Comments
 (0)