CMakeLists.txt 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. ${CMAKE_CURRENT_SOURCE_DIR}/dumps/client_CreateActivateSession.hex
  42. DEPENDS ${PROJECT_SOURCE_DIR}/tools/hex2bin.py
  43. ${CMAKE_CURRENT_SOURCE_DIR}/dumps/client_HELOPN.hex)
  44. set(check_fileinput_source check_server_interaction_fileinput.c testing_networklayers.c $<TARGET_OBJECTS:open62541-object>)
  45. if(NOT ENABLE_AMALGAMATION)
  46. list(APPEND check_fileinput_source ${PROJECT_SOURCE_DIR}/examples/logger_stdout.c)
  47. endif()
  48. add_executable(check_server_interaction_fileinput ${check_fileinput_source})
  49. target_include_directories(check_server_interaction_fileinput PRIVATE ${PROJECT_SOURCE_DIR}/examples)
  50. target_include_directories(check_server_interaction_fileinput PRIVATE ${PROJECT_BINARY_DIR})
  51. target_link_libraries(check_server_interaction_fileinput ${LIBS})
  52. add_test(server_interaction_fileinput ${CMAKE_CURRENT_BINARY_DIR}/check_server_interaction_fileinput ${CMAKE_CURRENT_BINARY_DIR}/client_HELOPN.bin)
  53. add_custom_target(server_interaction_fileinput ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/client_HELOPN.bin)