CMakeLists.txt 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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)