racket/collects/mzcom/installer.ss
2008-04-25 12:50:45 +00:00

14 lines
575 B
Scheme

(module installer mzscheme
(require mzlib/process
setup/dirs)
(provide post-installer)
(define (post-installer plt-home)
(let ([exe "MzCOM.exe"])
(cond [(not (eq? (system-type) 'windows))
;(printf "Warning: can't install MzCOM on non-Windows machine\n")
(void)]
[(not (file-exists? (build-path (find-console-bin-dir) exe)))
(printf "Warning: MzCOM binary not installed\n")]
[else (parameterize ([current-directory (find-console-bin-dir)])
(system* exe "/RegServer"))]))))