mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-07 01:15:33 +00:00
Relates to #5815. build.sh is a new script that builds any or all of the keyboards in the common/test/keyboards folder. build.bat is a wrapper for build.sh, just for Windows CMD. Assumes that kmcomp.exe has already been built or allows you to specify your own kmcomp.exe if necessary.
9 lines
230 B
Batchfile
9 lines
230 B
Batchfile
@echo off
|
|
|
|
rem Use gosh.bat to launch build.sh
|
|
set gosh=%~dp0%..\..\..\resources\gosh\gosh.bat
|
|
set buildsh=%~dp0%build.sh
|
|
"%gosh%" "%buildsh%" %*
|
|
|
|
rem If we get this far, then we've failed to launch gosh and/or build.sh
|
|
exit /b 2
|