mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-28 08:54:35 +00:00
13 lines
240 B
Batchfile
13 lines
240 B
Batchfile
@echo off
|
|
setlocal EnableDelayedExpansion
|
|
|
|
set file_input=%1
|
|
set name=%1
|
|
FOR %%f IN (name) do (
|
|
FOR %%g in (!%%f!) do set "%%f=%%~ng"
|
|
)
|
|
|
|
cl -nologo -O2 -MT -TP -c %file_input% ^
|
|
&& lib -nologo %name%.obj -out:%name%.lib ^
|
|
&& del *.obj
|