19 lines
484 B
Scheme
19 lines
484 B
Scheme
(module installer mzscheme
|
|
(require (lib "compile.ss" "profj"))
|
|
(provide installer)
|
|
|
|
(define (installer plthome)
|
|
(let ([java.test (build-path
|
|
(collection-path "profj" "libs" "java" "tester"))])
|
|
(let ([javac
|
|
(lambda (file)
|
|
(parameterize ([current-load-relative-directory
|
|
java.test])
|
|
(compile-java 'file
|
|
'file
|
|
'full
|
|
(build-path java.test file)
|
|
#f
|
|
#f)))])
|
|
(javac "TestBase.djava")))))
|