CMakeLists.txt 528 B

123456789101112131415161718192021
  1. #######################################
  2. # Add common includes #
  3. #######################################
  4. opener_common_includes()
  5. #######################################
  6. # Add platform-specific includes #
  7. #######################################
  8. opener_platform_support("INCLUDES")
  9. set( PortsTestSrc
  10. socket_timer_tests.cpp
  11. check_encapsulation_inactivity_tests.cpp
  12. )
  13. include_directories( ${SRC_DIR}/ports )
  14. add_library( PortsTest ${PortsTestSrc} )
  15. target_link_libraries( PortsTest PLATFORM_GENERIC )