Tests: Fix RunCMake.BuildDepends filesystem delay for Watcom WMake

Our 1.125s delay does not seem to be long enough to be reliable with
the Watcom `wmake` tool.  Use a longer delay for Watcom.
This commit is contained in:
Brad King 2016-04-29 11:47:35 -04:00
parent 26790ad93b
commit 47c298851b
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
include(RunCMake)
if(RunCMake_GENERATOR STREQUAL "Borland Makefiles")
if(RunCMake_GENERATOR STREQUAL "Borland Makefiles" OR
RunCMake_GENERATOR STREQUAL "Watcom WMake")
set(fs_delay 3)
else()
set(fs_delay 1.125)