CodeCommitsIssuesPull requestsActionsInsightsSecurity
29c7c36957a19f57d33a6d464ff5f3a55618aca0

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

cmake/find_execinfo.cmake

9lines · modecode

1if (ARCH_FREEBSD)
2 find_library (EXECINFO_LIBRARY execinfo)
3 find_library (ELF_LIBRARY elf)
4 message (STATUS "Using execinfo: ${EXECINFO_LIBRARY}")
5 message (STATUS "Using elf: ${ELF_LIBRARY}")
6else ()
7 set (EXECINFO_LIBRARY "")
8 set (ELF_LIBRARY "")
9endif ()