1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/make_tests.bat
2019-07-30 17:13:07 +02:00

6 lines
204 B
Batchfile

curl -O https://raw.githubusercontent.com/vlang/vc/master/v.c
gcc -std=gnu11 -DUNICODE -D_UNICODE -w -o vc.exe v.c
del v.c
vc.exe -o v.exe compiler
for /r . %%x in (*_test.v) do @v -o test.exe -debug %%x