summaryrefslogtreecommitdiff
path: root/windows
diff options
context:
space:
mode:
authorPierre Joye <pierre.php@gmail.com>2016-07-17 16:05:58 +0700
committerPierre Joye <pierre.php@gmail.com>2016-07-17 16:05:58 +0700
commitf91a238fc7e2d81ca82ff712161231dd816ba5bc (patch)
tree62d081a0c5311d84691983c7307eef3c7985b7b3 /windows
parent61417d6854dae64c12f636e697092930fcd0557e (diff)
downloadlibgd-f91a238fc7e2d81ca82ff712161231dd816ba5bc.tar.gz
skip gdtest folder
Diffstat (limited to 'windows')
-rw-r--r--windows/gentest.bat4
1 files changed, 2 insertions, 2 deletions
diff --git a/windows/gentest.bat b/windows/gentest.bat
index 96b4414..9c2cbeb 100644
--- a/windows/gentest.bat
+++ b/windows/gentest.bat
@@ -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!
)