diff --git a/buildconfig/Jenkins/systemtests.bat b/buildconfig/Jenkins/systemtests.bat
index 72058cdf04df30af03f3dc6d87388e00bd8066db..02c2fd894afe31157b2b62b15ac4aa4659ea31bb 100755
--- a/buildconfig/Jenkins/systemtests.bat
+++ b/buildconfig/Jenkins/systemtests.bat
@@ -50,9 +50,9 @@ if not EXIST %WORKSPACE%\build\CMakeCache.txt (
 :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
 :: Build step
 :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
-call cmake.exe --build --target StandardTestData -- /nologo /p:Configuration=Release /verbosity:minimal
+call cmake.exe --build . --target StandardTestData -- /nologo /p:Configuration=Release /verbosity:minimal
 if ERRORLEVEL 1 exit /b %ERRORLEVEL%
-call cmake.exe --build --target SystemTestData -- /nologo /p:Configuration=Release /verbosity:minimal
+call cmake.exe --build . --target SystemTestData -- /nologo /p:Configuration=Release /verbosity:minimal
 if ERRORLEVEL 1 exit /b %ERRORLEVEL%
 
 :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::