fix linking issue

This commit is contained in:
Francisco Paisana 2019-11-15 13:54:26 +00:00
parent 546ee98879
commit b0e0b3232f
1 changed files with 3 additions and 1 deletions

View File

@ -18,6 +18,8 @@
# and at http://www.gnu.org/licenses/.
#
find_package(SCTP REQUIRED)
#######################################################################
# COMMON TESTS
#######################################################################
@ -81,5 +83,5 @@ target_link_libraries(timer_test srslte_common)
add_test(timer_test timer_test)
add_executable(network_utils_test network_utils_test.cc)
target_link_libraries(network_utils_test srslte_common ${CMAKE_THREAD_LIBS_INIT} ${SCTP_LIBRARIES})
target_link_libraries(network_utils_test srslte_common ${SCTP_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})
add_test(network_utils_test network_utils_test)