[plt-scheme] wmzscheme
At Thu, 02 Jun 2005 21:02:07 +0200, Hans Oesterholt-Dijkema wrote:
> Does anyone know of a 'wmzscheme' program, that
> doesn't open a console, on Windows? I need such
> program to be able to start mzgtk2 programs without
> getting a console program.
As of v299.107, MzScheme can make a non-console variant of itself:
(require (lib "embed.ss" "compiler"))
(make-embedding-executable "wmzscheme.exe"
#f #f null null null null
'((subsystem . windows)))
It can also make a console variant of a MrEd-based application:
(require (lib "embed.ss" "compiler"))
(make-embedding-executable "cmred.exe"
#t #f null null null null
'((subsystem . console)))
Matthew