cmake/Tests/RunCMake/CompileFeatures/CMP0128OldSameStandard-build-check.cmake

13 lines
279 B
CMake
Raw Normal View History

2021-11-20 13:41:27 +01:00
foreach(flag @flags@)
string(FIND "${actual_stdout}" "${flag}" position)
if(NOT position EQUAL -1)
set(found TRUE)
break()
endif()
endforeach()
if(NOT found)
2022-03-29 21:10:50 +02:00
set(RunCMake_TEST_FAILED "No compile flags from \"@flags@\" found for LANG_STANDARD=default.")
2021-11-20 13:41:27 +01:00
endif()