You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
555B

  1. # - Try to find sctp
  2. #
  3. # Once done this will define
  4. # SCTP_FOUND - System has mbedtls
  5. # SCTP_INCLUDE_DIRS - The mbedtls include directories
  6. # SCTP_LIBRARIES - The mbedtls library
  7. #find Mbedtls
  8. FIND_PATH(
  9. SCTP_INCLUDE_DIRS
  10. NAMES usrsctp.h
  11. )
  12. FIND_LIBRARY(
  13. SCTP_LIBRARIES
  14. NAMES usrsctp
  15. )
  16. message(STATUS "SCTP LIBRARIES: " ${SCTP_LIBRARIES})
  17. message(STATUS "SCTP INCLUDE DIRS: " ${SCTP_INCLUDE_DIRS})
  18. INCLUDE(FindPackageHandleStandardArgs)
  19. FIND_PACKAGE_HANDLE_STANDARD_ARGS(SCTP DEFAULT_MSG SCTP_LIBRARIES SCTP_INCLUDE_DIRS)