cmake_minimum_required(VERSION3.25)project(try-compile-testLANGUAGESCCXX)try_compile(resultPROJECTtest-try-compileSOURCE_DIR"${CMAKE_CURRENT_SOURCE_DIR}/try")if(NOTresult)message(FATAL_ERROR"Compiler flags are not passed consistently to try_compile!")endif()