last bits to making compilation work

This commit is contained in:
Chris Cochrun 2023-06-14 07:10:00 -05:00
parent 207f1d0234
commit 4af927f7e9
5 changed files with 50 additions and 7 deletions

View file

@ -1,4 +1,8 @@
(when (find-package :ql) (funcall (read-from-string "ql:quickload") :deploy))
(load (sb-ext:posix-getenv "ASDF"))
(asdf:load-asd (pathname (truename "tfcserver.asd")))
;; (ql:quickload :tfcserver)
(asdf:load-system "tfcserver")
(when (find-package :ql) (funcall (read-from-string "ql:quickload") :tfcserver))
;; (push :deploy-console *features*)
(asdf:make :tfcserver)
(quit)