cmake: Delete check_cxx_source_links_with_flags macro

This commit is contained in:
Hennadii Stepanov
2025-02-20 12:38:55 +00:00
parent 09e8fd25b1
commit 88ee6800c9
2 changed files with 1 additions and 9 deletions

View File

@ -14,14 +14,6 @@ macro(check_cxx_source_compiles_with_flags flags source)
cmake_pop_check_state()
endmacro()
macro(check_cxx_source_links_with_flags flags source)
cmake_push_check_state(RESET)
set(CMAKE_REQUIRED_FLAGS ${flags})
list(JOIN CMAKE_REQUIRED_FLAGS " " CMAKE_REQUIRED_FLAGS)
check_cxx_source_compiles("${source}" ${ARGN})
cmake_pop_check_state()
endmacro()
macro(check_cxx_source_links_with_libs libs source)
cmake_push_check_state(RESET)
set(CMAKE_REQUIRED_LIBRARIES "${libs}")