
* Another big chunk of v4-require-isms * Allow `#lang framework/keybinding-lang' for keybinding files * Move hierlist sources into "mrlib/hierlist", leave stub behind svn: r10689
16 lines
572 B
Scheme
16 lines
572 B
Scheme
(module installer mzscheme
|
|
(require profj/compile)
|
|
(provide installer)
|
|
|
|
(define (installer plthome)
|
|
(let ((draw-path (build-path (collection-path "htdch" "idraw"))))
|
|
(let ((javac
|
|
(lambda (file)
|
|
(parameterize ([current-load-relative-directory draw-path]
|
|
[current-directory draw-path] )
|
|
(compile-java 'file 'file 'full
|
|
(build-path draw-path file)
|
|
#f #f)))))
|
|
(javac "Canvas.java")
|
|
(javac "World.java")))))
|