CMakeLists.txt 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. include_directories(${PROJECT_SOURCE_DIR}/include)
  2. include_directories(${PROJECT_BINARY_DIR}/src_generated)
  3. set(LIBS open62541)
  4. if(NOT WIN32)
  5. list(APPEND LIBS pthread)
  6. if (NOT APPLE)
  7. list(APPEND LIBS rt)
  8. endif()
  9. else()
  10. list(APPEND LIBS ws2_32)
  11. endif()
  12. if(ENABLE_MULTITHREADING)
  13. list(APPEND LIBS urcu-cds urcu urcu-common)
  14. endif(ENABLE_MULTITHREADING)
  15. add_executable(server_variable server_variable.c)
  16. target_link_libraries(server_variable ${LIBS})
  17. add_executable(server_repeated_job server_repeated_job.c)
  18. target_link_libraries(server_repeated_job ${LIBS})
  19. add_custom_command(OUTPUT ${PROJECT_BINARY_DIR}/src_generated/nodeset.h ${PROJECT_BINARY_DIR}/src_generated/nodeset.c
  20. PRE_BUILD
  21. COMMAND ${PYTHON_EXECUTABLE} ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/generate_open62541CCode.py -i ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/NodeID_Blacklist_FullNS0.txt ${PROJECT_SOURCE_DIR}/tools/schema/namespace0/Opc.Ua.NodeSet2.xml ${PROJECT_SOURCE_DIR}/examples/server_nodeset.xml ${PROJECT_BINARY_DIR}/src_generated/nodeset
  22. DEPENDS ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/generate_open62541CCode.py
  23. ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/logger.py
  24. ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/open62541_MacroHelper.py
  25. ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/ua_builtin_types.py
  26. ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/ua_constants.py
  27. ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/ua_namespace.py
  28. ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/ua_node_types.py
  29. ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/NodeID_Blacklist_FullNS0.txt
  30. ${PROJECT_SOURCE_DIR}/examples/server_nodeset.xml)
  31. add_executable(server_nodeset server_nodeset.c ${PROJECT_BINARY_DIR}/src_generated/nodeset.c)
  32. target_link_libraries(server_nodeset ${LIBS})
  33. if(ENABLE_METHODCALLS)
  34. add_executable(server_method server_method.c)
  35. target_link_libraries(server_method ${LIBS})
  36. endif()