This provides a script that can be used to quickly build one or more tcl scripts or applications into executable (windows only at the moment) Sources at https://fossil.mpcjanssen.nl/site-tcl/dir?ci=tip&name=scripts/tcl2exe %|%this fossil repo%|% ====== tcl2exe wraps a script using tclkit and sdx including provided libraries and other assets. Usage: tcl2exe gui[0|1] file.tcl file.exe ?extra-from extra-to? .... Quickly wrap a single script from the command line while including the provide extras. Extras are copied from `extra-from` into `extra-to` in the created starpack. tcl2exe pkgfile Build all packages from `pkgfile` matching pkg-glob (* if omitted). tcl2exe sdx ... Call embedded sdx ... tcl2exe Build all packages from all *.tpkg files in current folder. tcl2exe -h|--help|/? Show this screen. ====== Example `*.tpk` ====== { tcl2exe { script scripts/$pkg/$pkg.tcl target bin/$pkg.exe gui 0 extras { scripts/$pkg/bin bin scripts/$pkg/doc doc scripts/$pkg/lib lib } } tsd { script scripts/$pkg.tcl target bin/$pkg.exe gui 0 extras { c:/Tcl/lib/tdom0.8.3 lib/tdom } } tkcon { script scripts/$pkg.tcl target bin/$pkg.exe gui 1 extras { c:/Tcl/lib/tcllib1.18 lib/tcllib } } remark { script scripts/$pkg.tcl target bin/$pkg.exe gui 0 extras { } } tkchat { target bin/$pkg.exe gui 1 extras { scripts/$pkg . } } } ======