diff options
Diffstat (limited to 'Tests/VSExcludeFromDefaultBuild/ClearExes.cmake')
-rw-r--r-- | Tests/VSExcludeFromDefaultBuild/ClearExes.cmake | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Tests/VSExcludeFromDefaultBuild/ClearExes.cmake b/Tests/VSExcludeFromDefaultBuild/ClearExes.cmake new file mode 100644 index 0000000..ece30ad --- /dev/null +++ b/Tests/VSExcludeFromDefaultBuild/ClearExes.cmake @@ -0,0 +1,4 @@ +file(GLOB exeFiles "${dir}/*.exe") +foreach(exeFile IN LISTS exeFiles) + file(REMOVE "${exeFile}") +endforeach() |