aports/main/bctoolbox/cmake-bcunit-fix.patch
Francesco Colista 4dee62745e main/bctoolbox: moved from testing, added check()
needed by ortp which is needed by sngtc_client which is needed by Freeswitch
2019-05-01 13:59:57 +00:00

20 lines
697 B
Diff

diff --git a/CMakeLists.txt b/CMakeLists.txt
index e14e502..9711ea7 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -98,14 +98,9 @@ if(POLARSSL_FOUND)
endif()
if(ENABLE_TESTS_COMPONENT)
- find_package(BcUnit REQUIRED)
- cmake_push_check_state(RESET)
- list(APPEND CMAKE_REQUIRED_INCLUDES ${BCUNIT_INCLUDE_DIRS})
- list(APPEND CMAKE_REQUIRED_LIBRARIES ${BCUNIT_LIBRARIES})
check_symbol_exists("CU_get_suite" "BCUnit/BCUnit.h" HAVE_CU_GET_SUITE)
check_symbol_exists("CU_curses_run_tests" "BCUnit/BCUnit.h" HAVE_CU_CURSES)
check_symbol_exists("CU_set_trace_handler" "BCUnit/Util.h" HAVE_CU_SET_TRACE_HANDLER)
- cmake_pop_check_state()
set(TESTER_REQUIRES_PRIVATE "bcunit")
endif()