skip gdtest folder

master
Pierre Joye 2016-07-17 16:05:58 +07:00
parent 61417d6854
commit f91a238fc7
1 changed files with 2 additions and 2 deletions

View File

@ -21,13 +21,13 @@ for /D %%d in (!testsdir!/*) do (
)
for /D %%d in (!testsdir!/*) do (
for %%f in (!testsdir!/%%d/*.c) do (
if NOT "%%d"=="gdtest" for %%f in (!testsdir!/%%d/*.c) do (
echo !builddir!\%%d_%%~nf.obj: !testsdir!\%%d\%%f; ^$^(CC^) ^$^(TEST_CFLAGS^) /c ^$** /Fo:$@ >> !TESTMK!
)
)
for /D %%d in (!testsdir!/*) do (
for %%f in (!testsdir!/%%d/*.c) do (
if NOT "%%d"=="gdtest" for %%f in (!testsdir!/%%d/*.c) do (
echo !builddir!\tests\%%d_%%~nf.exe: !builddir!\%%d_%%~nf.obj; !LD! !LDFLAGS! $** /out:$@ >> !TESTMK!
echo %%d_%%~nf.exe >> !TESTLIST!
)