-
Notifications
You must be signed in to change notification settings - Fork 6
/
deliver.lisp
44 lines (31 loc) · 930 Bytes
/
deliver.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
;;; -*- Mode: LISP; Syntax: Common-Lisp; Package: CL-USER -*-
(in-package :cl-user)
(load-all-patches)
#+:mswindows
(setf (logical-pathname-translations "tangram")
'(("**;*.*" "C:\\Users\\micha\\Desktop\\GIT\\Common-Lisp-Tangram-Solver\\src\\**\\*.*")))
#-:mswindows
(setf (logical-pathname-translations "tangram")
'(("**;*.*" "/home/mwessel/tangram/src/**/*.*")))
;;;
;;;
;;;
(require "clim")
(load "tangram:define-system.lisp")
(load "tangram:tangram-sysdcl.lisp")
(defun csys (system &rest args)
(apply #'compile-system system args)
(apply #'load-system system args))
(csys "tangram" :force-p t)
(deliver 'tangram::tangram
#-:mswindows
"/home/mwessel/temp/tangram"
#+:mswindows
"c:\\temp\\tangram.exe"
4
:packages-to-keep
'(tangram-geometry tangram-persistence-manager cl-user tangram)
:interface :capi
:multiprocessing t
)
(quit)