CMakeLists.txt 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. include_directories(${PROJECT_SOURCE_DIR}/include)
  2. include_directories(${PROJECT_SOURCE_DIR}/deps)
  3. include_directories(${PROJECT_SOURCE_DIR}/src)
  4. include_directories(${PROJECT_BINARY_DIR}/src_generated)
  5. find_package(Check REQUIRED)
  6. find_package(Threads REQUIRED)
  7. set(LIBS ${CHECK_LIBRARIES})
  8. if(NOT WIN32)
  9. list(APPEND LIBS rt pthread)
  10. endif(NOT WIN32)
  11. if(MULTITHREADING)
  12. list(APPEND LIBS urcu-cds urcu urcu-common)
  13. endif(MULTITHREADING)
  14. # the unit test are built directly on the open62541 object files. so they can
  15. # access symbols that are hidden/not exported to the shared library
  16. add_executable(check_builtin check_builtin.c $<TARGET_OBJECTS:open62541-object>)
  17. target_link_libraries(check_builtin ${LIBS})
  18. add_test(builtin ${CMAKE_CURRENT_BINARY_DIR}/check_builtin)
  19. add_executable(check_memory check_memory.c $<TARGET_OBJECTS:open62541-object>)
  20. target_link_libraries(check_memory ${LIBS})
  21. add_test(memory ${CMAKE_CURRENT_BINARY_DIR}/check_memory)
  22. # add_executable(check_stack check_stack.c)
  23. # target_link_libraries(check_stack ${LIBS})
  24. # add_test(stack ${CMAKE_CURRENT_BINARY_DIR}/check_stack)
  25. # add_executable(check_base64 check_base64.c)
  26. # target_link_libraries(check_base64 ${LIBS})
  27. # add_test(base64 ${CMAKE_CURRENT_BINARY_DIR}/check_base64)
  28. add_executable(check_services_view check_services_view.c $<TARGET_OBJECTS:open62541-object>)
  29. target_link_libraries(check_services_view ${LIBS})
  30. add_test(services_view ${CMAKE_CURRENT_BINARY_DIR}/check_services_view)
  31. add_executable(check_nodestore check_nodestore.c $<TARGET_OBJECTS:open62541-object>)
  32. target_link_libraries(check_nodestore ${LIBS})
  33. add_test(nodestore ${CMAKE_CURRENT_BINARY_DIR}/check_nodestore)
  34. # add_executable(check_startup check_startup.c)
  35. # target_link_libraries(check_startup ${LIBS})
  36. # add_test(startup ${CMAKE_CURRENT_BINARY_DIR}/check_startup)
  37. # test with canned interactions from files
  38. add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/client_HELOPN.bin
  39. PRE_BUILD
  40. COMMAND python ${PROJECT_SOURCE_DIR}/tools/hex2bin.py ${CMAKE_CURRENT_SOURCE_DIR}/dumps/client_HELOPN.hex
  41. DEPENDS ${PROJECT_SOURCE_DIR}/tools/hex2bin.py
  42. ${CMAKE_CURRENT_SOURCE_DIR}/dumps/client_HELOPN.hex)
  43. add_executable(check_server_interaction_fileinput check_server_interaction_fileinput.c
  44. testing_networklayers.c
  45. ${PROJECT_SOURCE_DIR}/examples/logger_stdout.c
  46. $<TARGET_OBJECTS:open62541-object>)
  47. target_include_directories(check_server_interaction_fileinput PRIVATE ${PROJECT_SOURCE_DIR}/examples)
  48. target_include_directories(check_server_interaction_fileinput PRIVATE ${PROJECT_BINARY_DIR})
  49. target_link_libraries(check_server_interaction_fileinput ${LIBS})
  50. add_test(server_interaction_fileinput ${CMAKE_CURRENT_BINARY_DIR}/check_server_interaction_fileinput ${CMAKE_CURRENT_BINARY_DIR}/client_HELOPN.bin)
  51. add_custom_target(server_interaction_fileinput ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/client_HELOPN.bin)