janet/build_win.bat

105 lines
2.8 KiB
Batchfile
Raw Normal View History

2018-09-06 02:18:42 +00:00
@rem Build janet on windows
2018-08-06 01:13:14 +00:00
@rem
2018-09-06 02:18:42 +00:00
@rem Open a "Windows SDK Command Shell" and cd to the janet directory
2018-08-07 04:54:47 +00:00
@rem Then run this script with no arguments to build the executable
2018-08-06 01:13:14 +00:00
@echo off
@rem Ensure correct command prompt
@if not defined INCLUDE goto :BADCMD
@rem Sub commands
@if "%1"=="help" goto HELP
@if "%1"=="clean" goto CLEAN
@if "%1"=="test" goto TEST
@rem Set compile and link options here
@setlocal
2018-09-06 02:18:42 +00:00
@set JANET_COMPILE=cl /nologo /Isrc\include /c /O2 /W3 /LD /D_CRT_SECURE_NO_WARNINGS
@set JANET_LINK=link /nologo
2018-08-06 01:13:14 +00:00
2018-08-07 04:54:47 +00:00
mkdir build
mkdir build\core
mkdir build\mainclient
2018-08-06 01:13:14 +00:00
@rem Build the xxd tool for generating sources
2018-08-07 04:54:47 +00:00
@cl /nologo /c src/tools/xxd.c /Fobuild\xxd.obj
2018-08-06 01:13:14 +00:00
@if errorlevel 1 goto :BUILDFAIL
2018-08-07 04:54:47 +00:00
@link /nologo /out:build\xxd.exe build\xxd.obj
2018-08-06 01:13:14 +00:00
@if errorlevel 1 goto :BUILDFAIL
@rem Generate the embedded sources
@build\xxd.exe src\core\core.janet build\core\core.gen.c janet_gen_core
2018-08-06 01:13:14 +00:00
@if errorlevel 1 goto :BUILDFAIL
@build\xxd.exe src\mainclient\init.janet build\mainclient\init.gen.c janet_gen_init
@if errorlevel 1 goto :BUILDFAIL
@rem Build the generated sources
@%JANET_COMPILE% /Fobuild\core\core.gen.obj build\core\core.gen.c
@if errorlevel 1 goto :BUILDFAIL
@%JANET_COMPILE% /Fobuild\mainclient\init.gen.obj build\mainclient\init.gen.c
2018-08-06 01:13:14 +00:00
@if errorlevel 1 goto :BUILDFAIL
@rem Build the sources
2018-08-07 04:54:47 +00:00
for %%f in (src\core\*.c) do (
2018-09-06 02:18:42 +00:00
@%JANET_COMPILE% /Fobuild\core\%%~nf.obj %%f
2018-08-06 01:13:14 +00:00
@if errorlevel 1 goto :BUILDFAIL
)
@rem Build the main client
2018-08-07 04:54:47 +00:00
for %%f in (src\mainclient\*.c) do (
2018-09-06 02:18:42 +00:00
@%JANET_COMPILE% /Fobuild\mainclient\%%~nf.obj %%f
2018-08-06 01:13:14 +00:00
@if errorlevel 1 goto :BUILDFAIL
)
@rem Link everything to main client
2018-09-06 02:18:42 +00:00
%JANET_LINK% /out:janet.exe build\core\*.obj build\mainclient\*.obj
2018-08-06 01:13:14 +00:00
@if errorlevel 1 goto :BUILDFAIL
2018-09-06 02:18:42 +00:00
echo === Successfully built janet.exe for Windows ===
2018-08-07 04:54:47 +00:00
echo === Run 'build_win test' to run tests. ==
echo === Run 'build_win clean' to delete build artifacts. ===
2018-08-06 01:13:14 +00:00
exit /b 0
@rem Not using correct command line
:BADCMD
@echo You must open a "Visual Studio .NET Command Prompt" to run this script
exit /b 1
@rem Show help
:HELP
@echo.
@echo Usage: build_windows [subcommand=clean,help,test]
@echo.
2018-09-06 02:18:42 +00:00
@echo Script to build janet on windows. Must be run from the Visual Studio
2018-08-06 01:13:14 +00:00
@echo command prompt.
exit /b 0
@rem Clean build artifacts
:CLEAN
2018-09-06 02:18:42 +00:00
del janet.exe janet.exp janet.lib
2018-08-07 04:54:47 +00:00
rd /s /q build
2018-08-06 01:13:14 +00:00
exit /b 0
@rem Run tests
:TEST
2018-09-06 02:18:42 +00:00
for %%f in (test/suite*.janet) do (
janet.exe test\%%f
2018-08-06 01:13:14 +00:00
@if errorlevel 1 goto :TESTFAIL
)
exit /b 0
:TESTFAIL
@echo.
@echo *******************************************************
@echo *** Tests FAILED -- Please check the error messages ***
@echo *******************************************************
exit /b 1
@rem Build failed
:BUILDFAIL
@echo.
@echo *******************************************************
@echo *** Build FAILED -- Please check the error messages ***
@echo *******************************************************
exit /b 1