cmake/Tests/RunCMake/CommandLine/trycompile-clean.cmake
2022-11-16 20:14:03 +01:00

9 lines
297 B
CMake

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()