cmake: remove unused a_find_library (#1921)

The last usage was removed in ea301194.
This commit is contained in:
Daniel Hahler 2017-07-16 15:25:22 +02:00 committed by GitHub
parent 02ef4f3ce7
commit a5d6f877c5
1 changed files with 0 additions and 7 deletions

View File

@ -159,13 +159,6 @@ set(AWESOME_DEPENDENCIES
)
pkg_check_modules(AWESOME_REQUIRED REQUIRED ${AWESOME_DEPENDENCIES})
macro(a_find_library variable library)
find_library(${variable} ${library})
if(NOT ${variable})
message(FATAL_ERROR ${library} " library not found.")
endif()
endmacro()
# Check for backtrace_symbols()
include(CheckFunctionExists)
check_function_exists(backtrace_symbols HAS_EXECINFO)