summaryrefslogtreecommitdiffstats
path: root/Tests/VSExcludeFromDefaultBuild/ResultTest.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/VSExcludeFromDefaultBuild/ResultTest.cmake')
-rw-r--r--Tests/VSExcludeFromDefaultBuild/ResultTest.cmake6
1 files changed, 6 insertions, 0 deletions
diff --git a/Tests/VSExcludeFromDefaultBuild/ResultTest.cmake b/Tests/VSExcludeFromDefaultBuild/ResultTest.cmake
index 8fb00bf..f96e70b 100644
--- a/Tests/VSExcludeFromDefaultBuild/ResultTest.cmake
+++ b/Tests/VSExcludeFromDefaultBuild/ResultTest.cmake
@@ -7,6 +7,12 @@ macro(TestExists exeName)
else()
message(FATAL_ERROR "File ${exeFile} was expected ${ARGN} to exist!")
endif()
+ set(exeFile "${dir}/${activeConfig}/install/${exeName}.exe")
+ if(${ARGN} EXISTS "${exeFile}")
+ message(STATUS "File ${exeFile} was correctly found ${ARGN} to exist.")
+ else()
+ message(FATAL_ERROR "File ${exeFile} was expected ${ARGN} to exist!")
+ endif()
endmacro()
TestExists(DefaultBuilt)