summaryrefslogtreecommitdiff
path: root/Tests/RunCMake/CommandLine/trycompile-clean.cmake
blob: 11ec2b9bb7672d28a652d51eae29b8d65539757a (plain)
1
2
3
4
5
6
7
8
enable_language(C)

# Look for a source tree left by enable_language internal checks.
set(scratch ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/CMakeScratch)
file(GLOB_RECURSE remnants ${scratch}/TryCompile-*/*)
if(remnants)
  message(FATAL_ERROR "try_compile should not leave artifacts behind")
endif()