CMakeLists.txt 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. include_directories(${PROJECT_SOURCE_DIR}/include)
  2. include_directories(${PROJECT_SOURCE_DIR}/plugins)
  3. include_directories(${PROJECT_BINARY_DIR})
  4. #############################
  5. # Compiled binaries folders #
  6. #############################
  7. set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin/examples)
  8. macro(add_example EXAMPLE_NAME EXAMPLE_SOURCE)
  9. add_executable(${EXAMPLE_NAME} ${STATIC_OBJECTS} ${EXAMPLE_SOURCE} ${ARGN})
  10. target_link_libraries(${EXAMPLE_NAME} open62541 ${open62541_LIBRARIES})
  11. assign_source_group(${EXAMPLE_SOURCE})
  12. add_dependencies(${EXAMPLE_NAME} open62541-amalgamation-header open62541-amalgamation-source)
  13. set_target_properties(${EXAMPLE_NAME} PROPERTIES FOLDER "open62541/examples")
  14. set_target_properties(${EXAMPLE_NAME} PROPERTIES VS_DEBUGGER_WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/bin/examples")
  15. if(UA_COMPILE_AS_CXX)
  16. set_source_files_properties(${EXAMPLE_SOURCE} PROPERTIES LANGUAGE CXX)
  17. endif()
  18. endmacro()
  19. #############
  20. # Tutorials #
  21. #############
  22. add_example(tutorial_datatypes tutorial_datatypes.c)
  23. add_example(tutorial_server_firststeps tutorial_server_firststeps.c)
  24. add_example(tutorial_server_variable tutorial_server_variable.c)
  25. add_example(tutorial_server_datasource tutorial_server_datasource.c)
  26. add_example(tutorial_server_variabletype tutorial_server_variabletype.c)
  27. add_example(tutorial_server_object tutorial_server_object.c)
  28. if(UA_ENABLE_METHODCALLS)
  29. add_example(tutorial_server_method tutorial_server_method.c)
  30. endif()
  31. add_example(tutorial_client_firststeps tutorial_client_firststeps.c)
  32. add_example(tutorial_client_events tutorial_client_events.c)
  33. ##################
  34. # Example Server #
  35. ##################
  36. add_example(server server.c)
  37. ##################
  38. # Example Client #
  39. ##################
  40. add_example(client client.c)
  41. add_example(client_connect_loop client_connect_loop.c)
  42. ####################
  43. # Feature Examples #
  44. ####################
  45. add_example(server_mainloop server_mainloop.c)
  46. add_example(server_instantiation server_instantiation.c)
  47. add_example(server_repeated_job server_repeated_job.c)
  48. add_example(server_inheritance server_inheritance.c)
  49. add_example(custom_datatype_client custom_datatype/client_types_custom.c)
  50. add_example(custom_datatype_server custom_datatype/server_types_custom.c)
  51. if(UA_ENABLE_NODEMANAGEMENT)
  52. add_example(access_control_server access_control/server_access_control.c)
  53. add_example(access_control_client access_control/client_access_control.c)
  54. endif()
  55. if(UA_BUILD_EXAMPLES_NODESET_COMPILER)
  56. if(BUILD_SHARED_LIBS)
  57. message(FATAL_ERROR "The nodeset compiler currently requires static linking to access internal API")
  58. endif()
  59. # example information model from nodeset xml
  60. add_custom_command(OUTPUT ${PROJECT_BINARY_DIR}/src_generated/nodeset.h ${PROJECT_BINARY_DIR}/src_generated/nodeset.c
  61. PRE_BUILD
  62. COMMAND ${PYTHON_EXECUTABLE} ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/generate_open62541CCode.py
  63. -i ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/NodeID_Blacklist_FullNS0.txt
  64. ${PROJECT_SOURCE_DIR}/tools/schema/namespace0/Opc.Ua.NodeSet2.xml
  65. ${PROJECT_SOURCE_DIR}/examples/server_nodeset.xml
  66. ${PROJECT_BINARY_DIR}/src_generated/nodeset
  67. DEPENDS ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/generate_open62541CCode.py
  68. ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/open62541_MacroHelper.py
  69. ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/ua_builtin_types.py
  70. ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/ua_constants.py
  71. ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/ua_namespace.py
  72. ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/ua_node_types.py
  73. ${PROJECT_SOURCE_DIR}/tools/pyUANamespace/NodeID_Blacklist_FullNS0.txt
  74. ${PROJECT_SOURCE_DIR}/examples/server_nodeset.xml)
  75. # needs internal methods which are not exported in the dynamic lib
  76. add_example(server_nodeset ${PROJECT_BINARY_DIR}/src_generated/nodeset.c server_nodeset.c)
  77. target_include_directories(server_nodeset PRIVATE ${PROJECT_SOURCE_DIR}/src ${PROJECT_SOURCE_DIR}/deps) # needs an internal header
  78. set_target_properties(server_nodeset PROPERTIES COMPILE_FLAGS "-Wno-pedantic -Wno-sign-conversion")
  79. endif()
  80. if(UA_BUILD_SELFSIGNED_CERTIFICATE)
  81. find_package(OpenSSL REQUIRED)
  82. add_custom_command(OUTPUT server_cert.der ca.crt
  83. COMMAND ${PYTHON_EXECUTABLE} ${PROJECT_SOURCE_DIR}/tools/certs/create_self-signed.py ${CMAKE_CURRENT_BINARY_DIR}
  84. DEPENDS ${PROJECT_SOURCE_DIR}/tools/certs/create_self-signed.py
  85. ${PROJECT_SOURCE_DIR}/tools/certs/localhost.cnf)
  86. add_custom_target(selfsigned ALL DEPENDS server_cert.der ca.crt)
  87. add_executable(server_certificate server_certificate.c ${STATIC_OBJECTS} server_cert.der ca.crt)
  88. target_link_libraries(server_certificate open62541 ${open62541_LIBRARIES})
  89. endif()
  90. if(UA_ENABLE_DISCOVERY)
  91. add_example(discovery_server_lds discovery/server_lds.c)
  92. add_example(discovery_server_register discovery/server_register.c)
  93. add_example(discovery_client_find_servers discovery/client_find_servers.c)
  94. if(UA_ENABLE_DISCOVERY_MULTICAST)
  95. add_example(discovery_server_multicast discovery/server_multicast.c)
  96. endif()
  97. endif()