summaryrefslogtreecommitdiffstats
path: root/Tests/VSExcludeFromDefaultBuild/ClearExes.cmake
blob: 99cf1a5cf56e7d1d7cb2e0a852cd4334b12b9cdd (plain)
1
2
3
4
5
6
7
8
file(GLOB exeFiles "${dir}/*.exe")
foreach(exeFile IN LISTS exeFiles)
  file(REMOVE "${exeFile}")
endforeach()
file(GLOB exeFiles "${dir}/install/*.exe")
foreach(exeFile IN LISTS exeFiles)
  file(REMOVE "${exeFile}")
endforeach()