CMakeLists.txt 59 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324
  1. cmake_minimum_required(VERSION 3.0...3.12)
  2. project(open62541)
  3. # set(CMAKE_VERBOSE_MAKEFILE ON)
  4. if(${CMAKE_VERSION} VERSION_LESS 3.12)
  5. cmake_policy(VERSION ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION})
  6. endif()
  7. string(TOLOWER "${CMAKE_BUILD_TYPE}" BUILD_TYPE_LOWER_CASE)
  8. set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/tools/cmake")
  9. find_package(PythonInterp REQUIRED)
  10. find_package(Git)
  11. include(AssignSourceGroup)
  12. include(GNUInstallDirs)
  13. # Set when installed via make install
  14. set(open62541_TOOLS_DIR ${PROJECT_SOURCE_DIR}/tools)
  15. set(open62541_NODESET_DIR ${PROJECT_SOURCE_DIR}/deps/ua-nodeset)
  16. include(macros_internal)
  17. include(macros_public)
  18. #############################
  19. # Compiled binaries folders #
  20. #############################
  21. set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
  22. set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
  23. set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
  24. ###########
  25. # Version #
  26. ###########
  27. include(SetGitBasedVersion)
  28. # The version string will be automatically set based on the git describe output.
  29. # This will automate the version strings. Just create a new tag, and the version will be set correctly.
  30. set_open62541_version()
  31. MESSAGE(STATUS "open62541 Version: ${OPEN62541_VER_MAJOR}.${OPEN62541_VER_MINOR}.${OPEN62541_VER_PATCH}${OPEN62541_VER_LABEL}")
  32. #################
  33. # Build Options #
  34. #################
  35. # Set default build type.
  36. if(NOT CMAKE_BUILD_TYPE)
  37. message(STATUS "CMAKE_BUILD_TYPE not given; setting to 'Debug'")
  38. set(CMAKE_BUILD_TYPE "Debug" CACHE STRING "Choose the type of build" FORCE)
  39. endif()
  40. option(UA_ENABLE_AMALGAMATION "Concatenate the library to a single file open62541.h/.c" OFF)
  41. set(UA_AMALGAMATION_ARCHITECTURES "" CACHE STRING "List of architectures to include in amalgamation")
  42. mark_as_advanced(UA_AMALGAMATION_ARCHITECTURES)
  43. # Platform. This is at the beginning in case the architecture changes some UA options
  44. set(UA_ARCHITECTURE "None" CACHE STRING "Architecture to build open62541 on")
  45. if(UA_ENABLE_AMALGAMATION)
  46. if("${UA_AMALGAMATION_ARCHITECTURES}" STREQUAL "")
  47. if(NOT "${UA_ARCHITECTURE}" STREQUAL "None")
  48. set(UA_AMALGAMATION_ARCHITECTURES "${UA_ARCHITECTURE}")
  49. else()
  50. # select some default architectures which should be included
  51. set(UA_AMALGAMATION_ARCHITECTURES "win32;posix")
  52. endif()
  53. endif()
  54. message(STATUS "Architectures included in amalgamation: ${UA_AMALGAMATION_ARCHITECTURES}")
  55. endif()
  56. if("${UA_ARCHITECTURE}" STREQUAL "None")
  57. if(UNIX)
  58. set(UA_ARCHITECTURE "posix" CACHE STRING "" FORCE)
  59. elseif(WIN32)
  60. set(UA_ARCHITECTURE "win32" CACHE STRING "" FORCE)
  61. endif(UNIX)
  62. endif()
  63. message(STATUS "The selected architecture is: ${UA_ARCHITECTURE}")
  64. string(TOUPPER ${UA_ARCHITECTURE} UA_ARCHITECTURE_UPPER)
  65. add_definitions(-DUA_ARCHITECTURE_${UA_ARCHITECTURE_UPPER})
  66. add_subdirectory(arch)
  67. GET_PROPERTY(architectures GLOBAL PROPERTY UA_ARCHITECTURES)
  68. list(SORT architectures)
  69. set_property(CACHE UA_ARCHITECTURE PROPERTY STRINGS None ${architectures})
  70. GET_PROPERTY(ua_architecture_directories_to_include GLOBAL PROPERTY UA_INCLUDE_DIRECTORIES)
  71. GET_PROPERTY(ua_architecture_headers GLOBAL PROPERTY UA_ARCHITECTURE_HEADERS)
  72. GET_PROPERTY(ua_architecture_headers_beginning GLOBAL PROPERTY UA_ARCHITECTURE_HEADERS_BEGINNING)
  73. GET_PROPERTY(ua_architecture_sources GLOBAL PROPERTY UA_ARCHITECTURE_SOURCES)
  74. set(ua_architecture_sources ${ua_architecture_sources}
  75. ${PROJECT_SOURCE_DIR}/arch/network_tcp.c
  76. )
  77. set(ua_architecture_headers ${ua_architecture_headers}
  78. ${PROJECT_SOURCE_DIR}/include/open62541/network_tcp.h
  79. ${PROJECT_SOURCE_DIR}/include/open62541/architecture_functions.h
  80. )
  81. if(UA_ENABLE_WEBSOCKET_SERVER)
  82. set(ua_architecture_sources ${ua_architecture_sources}
  83. ${PROJECT_SOURCE_DIR}/arch/network_ws.c)
  84. set(ua_architecture_headers ${ua_architecture_headers}
  85. ${PROJECT_SOURCE_DIR}/include/open62541/network_ws.h)
  86. endif()
  87. if(${UA_ARCHITECTURE} STREQUAL "None")
  88. message(FATAL_ERROR "No architecture was selected. Please select the architecture of your target platform")
  89. endif(${UA_ARCHITECTURE} STREQUAL "None")
  90. # Create a list of ifdefs for all the architectures.
  91. # This is needed to enable a default architecture if none is selected through gcc compiler def.
  92. # Especially if someone is using the amalgamated file on Linux/Windows he should not need to define an architecture.
  93. set(UA_ARCHITECTURES_NODEF "1 ") #to make it easier to append later the && symbol
  94. foreach(arch_ ${architectures})
  95. string(TOUPPER ${arch_} UA_ARCHITECTURE_UPPER_)
  96. set(UA_ARCHITECTURES_NODEF "${UA_ARCHITECTURES_NODEF} && !defined(UA_ARCHITECTURE_${UA_ARCHITECTURE_UPPER_})")
  97. endforeach(arch_ ${architectures})
  98. # Options
  99. set(UA_LOGLEVEL 300 CACHE STRING "Level at which logs shall be reported")
  100. option(UA_ENABLE_HISTORIZING "Enable server and client to provide historical access." OFF)
  101. option(UA_ENABLE_EXPERIMENTAL_HISTORIZING "Enable client experimental historical access features." OFF)
  102. option(UA_ENABLE_METHODCALLS "Enable the Method service set" ON)
  103. option(UA_ENABLE_NODEMANAGEMENT "Enable dynamic addition and removal of nodes at runtime" ON)
  104. option(UA_ENABLE_SUBSCRIPTIONS "Enable subscriptions support." ON)
  105. option(UA_ENABLE_SUBSCRIPTIONS_EVENTS "Enable the use of event subscriptions" OFF)
  106. option(UA_ENABLE_DISCOVERY "Enable Discovery Service (LDS)" ON)
  107. option(UA_ENABLE_DISCOVERY_MULTICAST "Enable Discovery Service with multicast support (LDS-ME)" OFF)
  108. option(UA_ENABLE_QUERY "Enable query support." OFF)
  109. option(UA_ENABLE_COVERAGE "Enable gcov coverage" OFF)
  110. option(UA_ENABLE_ENCRYPTION "Enable encryption support (uses mbedTLS)" OFF)
  111. option(UA_ENABLE_MICRO_EMB_DEV_PROFILE "Builds CTT Compliant Micro Embedded Device Server Profile" OFF)
  112. option(BUILD_SHARED_LIBS "Enable building of shared libraries (dll/so)" OFF)
  113. option(UA_ENABLE_WEBSOCKET_SERVER "Enable websocket support (uses libwebsockets)" OFF)
  114. # Namespace Zero
  115. set(UA_NAMESPACE_ZERO "REDUCED" CACHE STRING "Completeness of the generated namespace zero (minimal/reduced/full)")
  116. SET_PROPERTY(CACHE UA_NAMESPACE_ZERO PROPERTY STRINGS "MINIMAL" "REDUCED" "FULL")
  117. if(UA_NAMESPACE_ZERO STREQUAL "MINIMAL")
  118. set(UA_GENERATED_NAMESPACE_ZERO OFF)
  119. else()
  120. set(UA_GENERATED_NAMESPACE_ZERO ON)
  121. endif()
  122. if(MSVC AND UA_NAMESPACE_ZERO STREQUAL "FULL")
  123. # For the full NS0 we need a stack size of 8MB (as it is default on linux)
  124. # See https://github.com/open62541/open62541/issues/1326
  125. set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /STACK:8000000")
  126. endif()
  127. if(UA_ENABLE_MICRO_EMB_DEV_PROFILE)
  128. if(NOT (UA_NAMESPACE_ZERO STREQUAL "FULL"))
  129. message(FATAL_ERROR "CTT Compliant Micro Embedded Device Server Profile needs full namespace zero")
  130. endif()
  131. endif()
  132. if(UA_BUILD_FUZZING OR UA_BUILD_OSS_FUZZ OR UA_BUILD_FUZZING_CORPUS)
  133. # Force enable options not passed in the build script, to also fuzzy-test this code
  134. set(UA_ENABLE_DISCOVERY ON CACHE STRING "" FORCE)
  135. set(UA_ENABLE_DISCOVERY_MULTICAST ON CACHE STRING "" FORCE)
  136. set(UA_ENABLE_ENCRYPTION ON CACHE STRING "" FORCE)
  137. set(UA_ENABLE_HISTORIZING ON CACHE STRING "" FORCE)
  138. set(UA_ENABLE_JSON_ENCODING ON CACHE STRING "" FORCE)
  139. set(UA_ENABLE_SUBSCRIPTIONS ON CACHE STRING "" FORCE)
  140. set(UA_ENABLE_SUBSCRIPTIONS_EVENTS ON CACHE STRING "" FORCE)
  141. endif()
  142. # It should not be possible to enable events without enabling subscriptions and full ns0
  143. #if((UA_ENABLE_SUBSCRIPTIONS_EVENTS) AND (NOT (UA_ENABLE_SUBSCRIPTIONS AND UA_NAMESPACE_ZERO STREQUAL "FULL")))
  144. # message(FATAL_ERROR "Unable to enable events without UA_ENABLE_SUBSCRIPTIONS and full namespace 0")
  145. #endif()
  146. if(UA_ENABLE_COVERAGE)
  147. set(CMAKE_BUILD_TYPE DEBUG)
  148. set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g -O0 -fprofile-arcs -ftest-coverage")
  149. set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fprofile-arcs -ftest-coverage -lgcov")
  150. set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -fprofile-arcs -ftest-coverage")
  151. endif()
  152. if(UA_ENABLE_DISCOVERY_MULTICAST AND NOT UA_ENABLE_DISCOVERY)
  153. MESSAGE(WARNING "UA_ENABLE_DISCOVERY_MULTICAST is enabled, but not UA_ENABLE_DISCOVERY. UA_ENABLE_DISCOVERY_MULTICAST will be set to OFF")
  154. SET(UA_ENABLE_DISCOVERY_MULTICAST OFF CACHE BOOL "Enable Discovery Service with multicast support (LDS-ME)" FORCE)
  155. endif()
  156. # Advanced options
  157. option(UA_ENABLE_IMMUTABLE_NODES "Nodes in the information model are not edited but copied and replaced" OFF)
  158. mark_as_advanced(UA_ENABLE_IMMUTABLE_NODES)
  159. set(UA_MULTITHREADING 0 CACHE STRING "Level of multithreading")
  160. mark_as_advanced(UA_MULTITHREADING)
  161. if (UA_MULTITHREADING GREATER 100)
  162. set(UA_ENABLE_IMMUTABLE_NODES ON)
  163. endif()
  164. option(UA_ENABLE_CUSTOM_NODESTORE "Do not compile the default Nodestore implementation into the library" OFF)
  165. mark_as_advanced(UA_ENABLE_CUSTOM_NODESTORE)
  166. option(UA_ENABLE_PUBSUB "Enable publish/subscribe" OFF)
  167. mark_as_advanced(UA_ENABLE_PUBSUB)
  168. option(UA_ENABLE_DA "Enable data access" ON)
  169. mark_as_advanced(UA_ENABLE_DA)
  170. option(UA_ENABLE_PUBSUB_ETH_UADP "Enable publish/subscribe UADP over Ethernet" OFF)
  171. mark_as_advanced(UA_ENABLE_PUBSUB_ETH_UADP)
  172. if(UA_ENABLE_PUBSUB_ETH_UADP)
  173. if (NOT CMAKE_SYSTEM MATCHES "Linux")
  174. message(FATAL_ERROR "UADP over Ethernet is only available on Linux.")
  175. endif()
  176. endif()
  177. option(UA_ENABLE_PUBSUB_DELTAFRAMES "Enable sending of delta frames with only the changes" OFF)
  178. mark_as_advanced(UA_ENABLE_PUBSUB_DELTAFRAMES)
  179. option(UA_ENABLE_PUBSUB_INFORMATIONMODEL "Enable PubSub information model twin" OFF)
  180. mark_as_advanced(UA_ENABLE_PUBSUB_INFORMATIONMODEL)
  181. option(UA_ENABLE_PUBSUB_INFORMATIONMODEL_METHODS "Enable PubSub informationmodel methods" OFF)
  182. mark_as_advanced(UA_ENABLE_PUBSUB_INFORMATIONMODEL_METHODS)
  183. if(UA_ENABLE_PUBSUB_INFORMATIONMODEL_METHODS)
  184. if(NOT UA_ENABLE_PUBSUB_INFORMATIONMODEL)
  185. message(FATAL_ERROR "PubSub information model methods cannot be used with disabled PubSub information model.")
  186. endif()
  187. endif()
  188. if(UA_ENABLE_PUBSUB_INFORMATIONMODEL)
  189. if(NOT UA_ENABLE_PUBSUB)
  190. message(FATAL_ERROR "PubSub information model representation cannot be used with disabled PubSub function.")
  191. endif()
  192. if(UA_NAMESPACE_ZERO STREQUAL "MINIMAL")
  193. message(FATAL_ERROR "PubSub information model representation cannot be used with MINIMAL namespace zero.")
  194. endif()
  195. endif()
  196. option(UA_ENABLE_PUBSUB_CUSTOM_PUBLISH_HANDLING
  197. "Use a custom implementation for the publish callback handling" OFF)
  198. mark_as_advanced(UA_ENABLE_PUBSUB_CUSTOM_PUBLISH_HANDLING)
  199. if(UA_ENABLE_PUBSUB_CUSTOM_PUBLISH_INTERRUPT)
  200. if(NOT UA_ENABLE_PUBSUB)
  201. message(FATAL_ERROR "Custom publish callback handling cannot be used with PubSub function disabled")
  202. endif()
  203. endif()
  204. option(UA_ENABLE_JSON_ENCODING "Enable Json encoding (EXPERIMENTAL)" OFF)
  205. mark_as_advanced(UA_ENABLE_JSON_ENCODING)
  206. option(UA_ENABLE_PUBSUB_MQTT "Enable publish/subscribe with mqtt (experimental)" OFF)
  207. mark_as_advanced(UA_ENABLE_PUBSUB_MQTT)
  208. if(UA_ENABLE_PUBSUB_MQTT)
  209. # Warn if run in Windows
  210. if(WIN32)
  211. MESSAGE(WARNING "Multithreading is enabled in MQTT plugin. This feature is under development and marked as EXPERIMENTAL")
  212. endif()
  213. if(NOT UA_ENABLE_PUBSUB)
  214. message(FATAL_ERROR "Mqtt cannot be used with disabled PubSub function.")
  215. endif()
  216. endif()
  217. option(UA_ENABLE_STATUSCODE_DESCRIPTIONS "Enable conversion of StatusCode to human-readable error message" ON)
  218. mark_as_advanced(UA_ENABLE_STATUSCODE_DESCRIPTIONS)
  219. option(UA_ENABLE_TYPEDESCRIPTION "Add the type and member names to the UA_DataType structure" ON)
  220. mark_as_advanced(UA_ENABLE_TYPEDESCRIPTION)
  221. option(UA_ENABLE_NODESET_COMPILER_DESCRIPTIONS "Set node description attribute for nodeset compiler generated nodes" ON)
  222. mark_as_advanced(UA_ENABLE_NODESET_COMPILER_DESCRIPTIONS)
  223. option(UA_ENABLE_DETERMINISTIC_RNG "Do not seed the random number generator (e.g. for unit tests)." OFF)
  224. mark_as_advanced(UA_ENABLE_DETERMINISTIC_RNG)
  225. option(UA_ENABLE_MALLOC_SINGLETON
  226. "Use a global variable pointer for malloc (and free, ...) that can be switched at runtime" OFF)
  227. mark_as_advanced(UA_ENABLE_MALLOC_SINGLETON)
  228. if(UA_ENABLE_MALLOC_SINGLETON)
  229. if(NOT "${UA_ARCHITECTURE}" MATCHES "posix")
  230. message(FATAL_ERROR "The singleton malloc is available only for the posix architecture")
  231. endif()
  232. endif()
  233. option(UA_ENABLE_VALGRIND_INTERACTIVE "Enable dumping valgrind every iteration. CAUTION! SLOWDOWN!" OFF)
  234. mark_as_advanced(UA_ENABLE_VALGRIND_INTERACTIVE)
  235. option(UA_MSVC_FORCE_STATIC_CRT "Force linking with the static C-runtime library when compiling to static library with MSVC" ON)
  236. mark_as_advanced(UA_MSVC_FORCE_STATIC_CRT)
  237. option(UA_FILE_NS0 "Override the NodeSet xml file used to generate namespace zero")
  238. mark_as_advanced(UA_FILE_NS0)
  239. # Semaphores/file system may not be available on embedded devices. It can be
  240. # disabled with the following option
  241. option(UA_ENABLE_DISCOVERY_SEMAPHORE "Enable Discovery Semaphore support" ON)
  242. mark_as_advanced(UA_ENABLE_DISCOVERY_SEMAPHORE)
  243. option(UA_ENABLE_UNIT_TESTS_MEMCHECK "Use Valgrind (Linux) or DrMemory (Windows) to detect memory leaks when running the unit tests" OFF)
  244. mark_as_advanced(UA_ENABLE_UNIT_TESTS_MEMCHECK)
  245. option(UA_ENABLE_UNIT_TEST_FAILURE_HOOKS
  246. "Add hooks to force failure modes for additional unit tests. Not for production use!" OFF)
  247. mark_as_advanced(UA_ENABLE_UNIT_TEST_FAILURE_HOOKS)
  248. set(UA_VALGRIND_INTERACTIVE_INTERVAL 1000 CACHE STRING "The number of iterations to wait before creating the next dump")
  249. mark_as_advanced(UA_VALGRIND_INTERACTIVE_INTERVAL)
  250. # Build options for debugging
  251. option(UA_DEBUG "Enable assertions and additional functionality that should not be included in release builds" OFF)
  252. mark_as_advanced(UA_DEBUG)
  253. if(CMAKE_BUILD_TYPE STREQUAL "Debug")
  254. set(UA_DEBUG ON)
  255. endif()
  256. option(UA_DEBUG_DUMP_PKGS "Dump every package received by the server as hexdump format" OFF)
  257. mark_as_advanced(UA_DEBUG_DUMP_PKGS)
  258. option(UA_ENABLE_HARDENING "Enable Hardening measures (e.g. Stack-Protectors and Fortify)" ON)
  259. mark_as_advanced(UA_ENABLE_HARDENING)
  260. if(CMAKE_VERSION VERSION_GREATER 3.6)
  261. set(UA_ENABLE_STATIC_ANALYZER "OFF" CACHE STRING "Enable installed static analyzer during build process (off/minimal/reduced/full)")
  262. SET_PROPERTY(CACHE UA_ENABLE_STATIC_ANALYZER PROPERTY STRINGS "OFF" "MINIMAL" "REDUCED" "FULL")
  263. endif()
  264. # Build Targets
  265. option(UA_BUILD_EXAMPLES "Build example servers and clients" OFF)
  266. option(UA_BUILD_TOOLS "Build OPC UA shell tools" OFF)
  267. option(UA_BUILD_UNIT_TESTS "Build the unit tests" OFF)
  268. option(UA_BUILD_FUZZING "Build the fuzzing executables" OFF)
  269. mark_as_advanced(UA_BUILD_FUZZING)
  270. if(UA_BUILD_FUZZING)
  271. # oss-fuzz already defines this by default
  272. add_definitions(-DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION)
  273. endif()
  274. if(UA_ENABLE_EXPERIMENTAL_HISTORIZING)
  275. if(NOT UA_ENABLE_HISTORIZING)
  276. message(FATAL_ERROR "UA_ENABLE_EXPERIMENTAL_HISTORIZING cannot be used with disabled UA_ENABLE_HISTORIZING.")
  277. endif()
  278. endif()
  279. option(UA_BUILD_FUZZING_CORPUS "Build the fuzzing corpus" OFF)
  280. mark_as_advanced(UA_BUILD_FUZZING_CORPUS)
  281. if(UA_BUILD_FUZZING_CORPUS)
  282. add_definitions(-DUA_DEBUG_DUMP_PKGS_FILE)
  283. set(UA_ENABLE_TYPEDESCRIPTION ON CACHE STRING "" FORCE)
  284. #set(UA_DEBUG_DUMP_PKGS ON CACHE STRING "" FORCE)
  285. endif()
  286. option(UA_BUILD_OSS_FUZZ "Special build switch used in oss-fuzz" OFF)
  287. mark_as_advanced(UA_BUILD_OSS_FUZZ)
  288. # Advanced Build Targets
  289. option(UA_PACK_DEBIAN "Special build switch used in .deb packaging" OFF)
  290. mark_as_advanced(UA_PACK_DEBIAN)
  291. # Building shared libs (dll, so). This option is written into ua_config.h.
  292. set(UA_DYNAMIC_LINKING OFF)
  293. if(BUILD_SHARED_LIBS)
  294. set(UA_DYNAMIC_LINKING ON)
  295. if (UA_ENABLE_DISCOVERY_MULTICAST)
  296. set(MDNSD_DYNAMIC_LINKING ON)
  297. endif()
  298. endif()
  299. # Warn if experimental features are enabled
  300. if(UA_MULTITHREADING)
  301. MESSAGE(WARNING "UA_MULTITHREADING is enabled. The feature is under development and marked as EXPERIMENTAL")
  302. endif()
  303. ########################
  304. # Linting during build #
  305. ########################
  306. set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
  307. include(linting_build)
  308. ######################
  309. # External Libraries #
  310. ######################
  311. list(APPEND open62541_LIBRARIES "")
  312. # Force compilation with as C++
  313. option(UA_COMPILE_AS_CXX "Force compilation with a C++ compiler" OFF)
  314. mark_as_advanced(UA_COMPILE_AS_CXX)
  315. if (UA_COMPILE_AS_CXX)
  316. # We need the UINT32_C define
  317. add_definitions(-D__STDC_CONSTANT_MACROS)
  318. endif()
  319. if(UA_ENABLE_ENCRYPTION)
  320. # The recommended way is to install mbedtls via the OS package manager. If
  321. # that is not possible, manually compile mbedTLS and set the cmake variables
  322. # defined in /tools/cmake/FindMbedTLS.cmake.
  323. find_package(MbedTLS REQUIRED)
  324. list(APPEND open62541_LIBRARIES ${MBEDTLS_LIBRARIES})
  325. endif()
  326. if(UA_ENABLE_WEBSOCKET_SERVER)
  327. # The recommended way is to install libwebsockets via the OS package manager. If
  328. # that is not possible, manually compile libwebsockets and set the cmake variables
  329. # defined in /tools/cmake/Findlibwebsockets.cmake
  330. find_package(libwebsockets REQUIRED)
  331. list(APPEND open62541_LIBRARIES ${LIBWEBSOCKETS_LIBRARIES})
  332. endif()
  333. #####################
  334. # Compiler Settings #
  335. #####################
  336. include(CompilerFlags)
  337. if(NOT UA_COMPILE_AS_CXX AND (CMAKE_COMPILER_IS_GNUCC OR "x${CMAKE_C_COMPILER_ID}" STREQUAL "xClang"))
  338. # Compiler
  339. add_definitions(-std=c99 -pipe
  340. -Wall -Wextra -Wpedantic
  341. -Wno-static-in-inline # clang doesn't like the use of static inline methods inside static inline methods
  342. -Wno-overlength-strings # may happen in the nodeset compiler when complex values are directly encoded
  343. -Wno-unused-parameter # some methods may require unused arguments to cast to a method pointer
  344. -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls
  345. -Wformat -Wformat-security -Wformat-nonliteral
  346. -Wuninitialized -Winit-self
  347. -Wcast-qual
  348. -Wstrict-overflow
  349. -Wnested-externs
  350. -Wmultichar
  351. -Wundef
  352. -Wc++-compat
  353. -fno-strict-aliasing # fewer compiler assumptions about pointer types
  354. -fexceptions # recommended for multi-threaded C code, also in combination with C++ code
  355. )
  356. set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -Werror")
  357. if (NOT MINGW)
  358. if(UA_ENABLE_HARDENING)
  359. check_cc_flag("-fstack-protector-strong") # more performant stack protector, available since gcc 4.9
  360. check_cc_flag("-fstack-clash-protection") # increased reliability of stack overflow detection, available since gcc 8
  361. check_cc_flag_untested("-mcet -fcf-protection") # future use (control flow integrity protection)
  362. endif()
  363. # IPO requires too much memory for unit tests
  364. # GCC docu recommends to compile all files with the same options, therefore ignore it completely
  365. if(NOT UA_BUILD_UNIT_TESTS)
  366. # needed to check if IPO is supported (check needs cmake > 3.9)
  367. if("${CMAKE_VERSION}" VERSION_GREATER 3.9)
  368. cmake_policy(SET CMP0069 NEW) # needed as long as required cmake < 3.9
  369. include(CheckIPOSupported)
  370. check_ipo_supported(RESULT CC_HAS_IPO) # Inter Procedural Optimization / Link Time Optimization (should be same as -flto)
  371. if(CC_HAS_IPO)
  372. set(CMAKE_INTERPROCEDURAL_OPTIMIZATION ON)
  373. endif()
  374. endif()
  375. endif()
  376. endif()
  377. if(UA_ENABLE_AMALGAMATION)
  378. add_definitions(-Wno-unused-function)
  379. endif()
  380. if(UA_PACK_DEBIAN)
  381. remove_definitions(-Wno-static-in-inline)
  382. endif()
  383. # Linker
  384. set(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "") # cmake sets -rdynamic by default
  385. # Debug
  386. if(BUILD_TYPE_LOWER_CASE STREQUAL "debug" AND UNIX)
  387. if("x${CMAKE_C_COMPILER_ID}" STREQUAL "xClang" AND NOT UA_ENABLE_UNIT_TESTS_MEMCHECK)
  388. # Add default sanitizer settings when using clang and Debug build.
  389. # This allows e.g. CLion to find memory locations for SegFaults
  390. message(STATUS "Sanitizer enabled")
  391. set(SANITIZER_FLAGS "-g -fno-omit-frame-pointer -gline-tables-only -fsanitize=address -fsanitize-address-use-after-scope -fsanitize-coverage=trace-pc-guard,trace-cmp -fsanitize=leak -fsanitize=undefined")
  392. set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${SANITIZER_FLAGS}")
  393. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${SANITIZER_FLAGS}")
  394. endif()
  395. endif()
  396. if(UA_ENABLE_HARDENING AND ((CMAKE_BUILD_TYPE STREQUAL "Release") OR (CMAKE_BUILD_TYPE STREQUAL "RelWithDebInfo")))
  397. check_cc_flag("-D_FORTIFY_SOURCE=2") # run-time buffer overflow detection (needs at least -O1)
  398. endif()
  399. # Strip release builds
  400. if(CMAKE_BUILD_TYPE STREQUAL "MinSizeRel" OR CMAKE_BUILD_TYPE STREQUAL "Release")
  401. add_definitions(-ffunction-sections -fdata-sections -fno-unwind-tables
  402. -fno-asynchronous-unwind-tables -fno-math-errno -fno-ident)
  403. # remove stack-protector with MinSizeRel
  404. if(CMAKE_BUILD_TYPE STREQUAL "MinSizeRel")
  405. add_definitions(-fno-stack-protector)
  406. endif()
  407. if(NOT OS9)
  408. set(CMAKE_C_LINK_FLAGS "${CMAKE_C_LINK_FLAGS} -s")
  409. set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -s")
  410. endif()
  411. if(APPLE)
  412. set(CMAKE_C_LINK_FLAGS "${CMAKE_C_LINK_FLAGS} -Wl,-dead_strip")
  413. set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-dead_strip")
  414. else()
  415. set(CMAKE_C_LINK_FLAGS "${CMAKE_C_LINK_FLAGS} -Wl,--gc-sections")
  416. set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--gc-sections")
  417. endif()
  418. if(NOT WIN32 AND NOT CYGWIN AND NOT APPLE)
  419. # these settings reduce the binary size by ~2kb
  420. set(CMAKE_C_LINK_FLAGS "${CMAKE_C_LINK_FLAGS} -Wl,-z,norelro -Wl,--hash-style=gnu -Wl,--build-id=none")
  421. endif()
  422. endif()
  423. endif()
  424. if(APPLE)
  425. set(CMAKE_MACOSX_RPATH 1)
  426. set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_DARWIN_C_SOURCE=1")
  427. endif()
  428. if(MSVC)
  429. set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /W3 /WX /w44996") # Compiler warnings, error on warning
  430. if(UA_MSVC_FORCE_STATIC_CRT AND NOT BUILD_SHARED_LIBS)
  431. set(CompilerFlags CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS_DEBUG CMAKE_CXX_FLAGS_RELEASE CMAKE_C_FLAGS
  432. CMAKE_C_FLAGS_DEBUG CMAKE_C_FLAGS_RELEASE)
  433. foreach(CompilerFlag ${CompilerFlags})
  434. string(REPLACE "/MD" "/MT" ${CompilerFlag} "${${CompilerFlag}}")
  435. endforeach()
  436. endif()
  437. endif()
  438. if(UA_BUILD_FUZZING OR UA_BUILD_OSS_FUZZ)
  439. add_definitions(-DUA_malloc=UA_memoryManager_malloc)
  440. add_definitions(-DUA_free=UA_memoryManager_free)
  441. add_definitions(-DUA_calloc=UA_memoryManager_calloc)
  442. add_definitions(-DUA_realloc=UA_memoryManager_realloc)
  443. endif()
  444. #########################
  445. # Generate Main Library #
  446. #########################
  447. file(MAKE_DIRECTORY "${PROJECT_BINARY_DIR}/src_generated")
  448. configure_file(include/open62541/config.h.in ${PROJECT_BINARY_DIR}/src_generated/open62541/config.h)
  449. configure_file(open62541.pc.in ${PROJECT_BINARY_DIR}/src_generated/open62541.pc @ONLY)
  450. if(UA_ENABLE_DISCOVERY_MULTICAST)
  451. set(MDNSD_LOGLEVEL 300 CACHE STRING "Level at which logs shall be reported" FORCE)
  452. configure_file("deps/mdnsd/libmdnsd/mdnsd_config.h.in" "${PROJECT_BINARY_DIR}/src_generated/mdnsd_config.h")
  453. endif()
  454. set(exported_headers ${exported_headers}
  455. ${PROJECT_BINARY_DIR}/src_generated/open62541/config.h
  456. ${PROJECT_SOURCE_DIR}/include/open62541/architecture_base.h
  457. ${ua_architecture_headers_beginning}
  458. )
  459. if(NOT "${UA_AMALGAMATION_ARCHITECTURES}" STREQUAL "")
  460. foreach(arch ${UA_AMALGAMATION_ARCHITECTURES})
  461. list(APPEND exported_headers ${PROJECT_SOURCE_DIR}/arch/${arch}/ua_architecture.h)
  462. endforeach()
  463. else()
  464. list(APPEND exported_headers ${PROJECT_SOURCE_DIR}/arch/${UA_ARCHITECTURE}/ua_architecture.h)
  465. endif()
  466. if(UA_ENABLE_HISTORIZING)
  467. # Historizing needs to be included before server_config.h
  468. set(historizing_exported_headers
  469. ${PROJECT_SOURCE_DIR}/include/open62541/plugin/historydatabase.h)
  470. endif()
  471. set(exported_headers ${exported_headers}
  472. ${PROJECT_SOURCE_DIR}/deps/ms_stdint.h
  473. ${PROJECT_SOURCE_DIR}/include/open62541/architecture_definitions.h
  474. ${PROJECT_BINARY_DIR}/src_generated/open62541/statuscodes.h
  475. ${PROJECT_BINARY_DIR}/src_generated/open62541/nodeids.h
  476. ${PROJECT_SOURCE_DIR}/include/open62541/constants.h
  477. ${PROJECT_SOURCE_DIR}/include/open62541/types.h
  478. ${PROJECT_BINARY_DIR}/src_generated/open62541/types_generated.h
  479. ${PROJECT_BINARY_DIR}/src_generated/open62541/types_generated_handling.h
  480. ${PROJECT_SOURCE_DIR}/include/open62541/util.h
  481. ${PROJECT_SOURCE_DIR}/include/open62541/server.h
  482. ${PROJECT_SOURCE_DIR}/include/open62541/plugin/log.h
  483. ${PROJECT_SOURCE_DIR}/include/open62541/plugin/network.h
  484. ${PROJECT_SOURCE_DIR}/include/open62541/plugin/accesscontrol.h
  485. ${PROJECT_SOURCE_DIR}/include/open62541/plugin/pki.h
  486. ${PROJECT_SOURCE_DIR}/include/open62541/plugin/securitypolicy.h
  487. ${PROJECT_SOURCE_DIR}/include/open62541/server_pubsub.h
  488. ${PROJECT_SOURCE_DIR}/include/open62541/plugin/pubsub.h
  489. ${PROJECT_SOURCE_DIR}/deps/ziptree.h
  490. ${PROJECT_SOURCE_DIR}/include/open62541/plugin/nodestore.h
  491. ${historizing_exported_headers}
  492. ${PROJECT_SOURCE_DIR}/include/open62541/server_config.h
  493. ${PROJECT_SOURCE_DIR}/include/open62541/client_config.h
  494. ${PROJECT_SOURCE_DIR}/include/open62541/client.h
  495. ${PROJECT_SOURCE_DIR}/include/open62541/client_highlevel.h
  496. ${PROJECT_SOURCE_DIR}/include/open62541/client_subscriptions.h
  497. ${PROJECT_SOURCE_DIR}/include/open62541/client_highlevel_async.h)
  498. set(internal_headers ${PROJECT_SOURCE_DIR}/deps/open62541_queue.h
  499. ${PROJECT_SOURCE_DIR}/deps/pcg_basic.h
  500. ${PROJECT_SOURCE_DIR}/deps/libc_time.h
  501. ${PROJECT_SOURCE_DIR}/deps/base64.h
  502. ${PROJECT_SOURCE_DIR}/src/ua_util_internal.h
  503. ${PROJECT_SOURCE_DIR}/src/ua_types_encoding_binary.h
  504. ${PROJECT_BINARY_DIR}/src_generated/open62541/types_generated_encoding_binary.h
  505. ${PROJECT_BINARY_DIR}/src_generated/open62541/transport_generated.h
  506. ${PROJECT_BINARY_DIR}/src_generated/open62541/transport_generated_handling.h
  507. ${PROJECT_BINARY_DIR}/src_generated/open62541/transport_generated_encoding_binary.h
  508. ${PROJECT_SOURCE_DIR}/src/ua_connection_internal.h
  509. ${PROJECT_SOURCE_DIR}/src/ua_securechannel.h
  510. ${PROJECT_SOURCE_DIR}/src/ua_workqueue.h
  511. ${PROJECT_SOURCE_DIR}/src/ua_timer.h
  512. ${PROJECT_SOURCE_DIR}/src/server/ua_session.h
  513. ${PROJECT_SOURCE_DIR}/src/server/ua_subscription.h
  514. ${PROJECT_SOURCE_DIR}/src/server/ua_session_manager.h
  515. ${PROJECT_SOURCE_DIR}/src/server/ua_securechannel_manager.h
  516. ${PROJECT_SOURCE_DIR}/src/pubsub/ua_pubsub_networkmessage.h
  517. ${PROJECT_SOURCE_DIR}/src/pubsub/ua_pubsub.h
  518. ${PROJECT_SOURCE_DIR}/src/pubsub/ua_pubsub_manager.h
  519. ${PROJECT_SOURCE_DIR}/src/pubsub/ua_pubsub_ns0.h
  520. ${PROJECT_SOURCE_DIR}/src/server/ua_server_internal.h
  521. ${PROJECT_SOURCE_DIR}/src/server/ua_services.h
  522. ${PROJECT_SOURCE_DIR}/src/client/ua_client_internal.h
  523. ${PROJECT_SOURCE_DIR}/src/server/ua_server_methodqueue.h
  524. ${PROJECT_SOURCE_DIR}/src/server/ua_asyncmethod_manager.h)
  525. # TODO: make client optional
  526. set(lib_sources ${PROJECT_SOURCE_DIR}/src/ua_types.c
  527. ${PROJECT_SOURCE_DIR}/src/ua_types_encoding_binary.c
  528. ${PROJECT_BINARY_DIR}/src_generated/open62541/types_generated.c
  529. ${PROJECT_BINARY_DIR}/src_generated/open62541/transport_generated.c
  530. ${PROJECT_BINARY_DIR}/src_generated/open62541/statuscodes.c
  531. ${PROJECT_SOURCE_DIR}/src/ua_util.c
  532. ${PROJECT_SOURCE_DIR}/src/ua_workqueue.c
  533. ${PROJECT_SOURCE_DIR}/src/ua_timer.c
  534. ${PROJECT_SOURCE_DIR}/src/ua_connection.c
  535. ${PROJECT_SOURCE_DIR}/src/ua_securechannel.c
  536. ${PROJECT_SOURCE_DIR}/src/server/ua_session.c
  537. ${PROJECT_SOURCE_DIR}/src/server/ua_nodes.c
  538. ${PROJECT_SOURCE_DIR}/src/server/ua_server.c
  539. ${PROJECT_SOURCE_DIR}/src/server/ua_server_ns0.c
  540. ${PROJECT_SOURCE_DIR}/src/server/ua_server_config.c
  541. ${PROJECT_SOURCE_DIR}/src/server/ua_server_binary.c
  542. ${PROJECT_SOURCE_DIR}/src/server/ua_server_utils.c
  543. ${PROJECT_SOURCE_DIR}/src/server/ua_server_discovery.c
  544. ${PROJECT_SOURCE_DIR}/src/server/ua_securechannel_manager.c
  545. ${PROJECT_SOURCE_DIR}/src/server/ua_session_manager.c
  546. ${PROJECT_SOURCE_DIR}/src/pubsub/ua_pubsub_networkmessage.c
  547. ${PROJECT_SOURCE_DIR}/src/pubsub/ua_pubsub_writer.c
  548. ${PROJECT_SOURCE_DIR}/src/pubsub/ua_pubsub_reader.c
  549. ${PROJECT_SOURCE_DIR}/src/pubsub/ua_pubsub_manager.c
  550. ${PROJECT_SOURCE_DIR}/src/pubsub/ua_pubsub_ns0.c
  551. ${PROJECT_SOURCE_DIR}/src/server/ua_server_methodqueue.c
  552. ${PROJECT_SOURCE_DIR}/src/server/ua_asyncmethod_manager.c
  553. # services
  554. ${PROJECT_SOURCE_DIR}/src/server/ua_services_view.c
  555. ${PROJECT_SOURCE_DIR}/src/server/ua_services_method.c
  556. ${PROJECT_SOURCE_DIR}/src/server/ua_services_session.c
  557. ${PROJECT_SOURCE_DIR}/src/server/ua_services_attribute.c
  558. ${PROJECT_SOURCE_DIR}/src/server/ua_services_discovery.c
  559. ${PROJECT_SOURCE_DIR}/src/server/ua_services_subscription.c
  560. ${PROJECT_SOURCE_DIR}/src/server/ua_services_monitoreditem.c
  561. ${PROJECT_SOURCE_DIR}/src/server/ua_services_securechannel.c
  562. ${PROJECT_SOURCE_DIR}/src/server/ua_services_nodemanagement.c
  563. ${PROJECT_SOURCE_DIR}/src/server/ua_services_discovery_multicast.c
  564. # client
  565. ${PROJECT_SOURCE_DIR}/src/client/ua_client.c
  566. ${PROJECT_SOURCE_DIR}/src/client/ua_client_connect.c
  567. ${PROJECT_SOURCE_DIR}/src/client/ua_client_connect_async.c
  568. ${PROJECT_SOURCE_DIR}/src/client/ua_client_discovery.c
  569. ${PROJECT_SOURCE_DIR}/src/client/ua_client_highlevel.c
  570. ${PROJECT_SOURCE_DIR}/src/client/ua_client_subscriptions.c
  571. ${PROJECT_SOURCE_DIR}/src/client/ua_client_worker.c
  572. # dependencies
  573. ${PROJECT_SOURCE_DIR}/deps/libc_time.c
  574. ${PROJECT_SOURCE_DIR}/deps/pcg_basic.c
  575. ${PROJECT_SOURCE_DIR}/deps/base64.c)
  576. set(default_plugin_headers ${PROJECT_SOURCE_DIR}/plugins/include/open62541/plugin/accesscontrol_default.h
  577. ${PROJECT_SOURCE_DIR}/plugins/include/open62541/plugin/pki_default.h
  578. ${PROJECT_SOURCE_DIR}/plugins/include/open62541/plugin/log_stdout.h
  579. ${PROJECT_SOURCE_DIR}/plugins/include/open62541/server_config_default.h
  580. ${PROJECT_SOURCE_DIR}/plugins/include/open62541/client_config_default.h
  581. ${PROJECT_SOURCE_DIR}/plugins/include/open62541/plugin/securitypolicy_default.h
  582. )
  583. set(default_plugin_sources ${PROJECT_SOURCE_DIR}/plugins/ua_log_stdout.c
  584. ${PROJECT_SOURCE_DIR}/plugins/ua_accesscontrol_default.c
  585. ${PROJECT_SOURCE_DIR}/plugins/ua_pki_default.c
  586. ${PROJECT_SOURCE_DIR}/plugins/ua_nodestore_default.c
  587. ${PROJECT_SOURCE_DIR}/plugins/ua_config_default.c
  588. ${PROJECT_SOURCE_DIR}/plugins/securityPolicies/ua_securitypolicy_none.c
  589. )
  590. if(UA_GENERATED_NAMESPACE_ZERO)
  591. list(APPEND internal_headers ${PROJECT_BINARY_DIR}/src_generated/open62541/namespace0_generated.h)
  592. list(APPEND lib_sources ${PROJECT_BINARY_DIR}/src_generated/open62541/namespace0_generated.c)
  593. endif()
  594. list(APPEND default_plugin_headers
  595. ${PROJECT_SOURCE_DIR}/plugins/include/open62541/plugin/securitypolicy_mbedtls_common.h)
  596. list(APPEND default_plugin_sources
  597. ${PROJECT_SOURCE_DIR}/plugins/securityPolicies/securitypolicy_mbedtls_common.c
  598. ${PROJECT_SOURCE_DIR}/plugins/securityPolicies/ua_securitypolicy_basic128rsa15.c
  599. ${PROJECT_SOURCE_DIR}/plugins/securityPolicies/ua_securitypolicy_basic256.c
  600. ${PROJECT_SOURCE_DIR}/plugins/securityPolicies/ua_securitypolicy_basic256sha256.c)
  601. if(UA_ENABLE_HISTORIZING)
  602. list(APPEND default_plugin_headers
  603. ${PROJECT_SOURCE_DIR}/plugins/include/open62541/plugin/historydata/history_data_backend.h
  604. ${PROJECT_SOURCE_DIR}/plugins/include/open62541/plugin/historydata/history_data_gathering.h
  605. ${PROJECT_SOURCE_DIR}/plugins/include/open62541/plugin/historydata/history_database_default.h
  606. ${PROJECT_SOURCE_DIR}/plugins/include/open62541/plugin/historydata/history_data_gathering_default.h
  607. ${PROJECT_SOURCE_DIR}/plugins/include/open62541/plugin/historydata/history_data_backend_memory.h
  608. )
  609. list(APPEND default_plugin_sources
  610. ${PROJECT_SOURCE_DIR}/plugins/historydata/ua_history_data_backend_memory.c
  611. ${PROJECT_SOURCE_DIR}/plugins/historydata/ua_history_data_gathering_default.c
  612. ${PROJECT_SOURCE_DIR}/plugins/historydata/ua_history_database_default.c
  613. )
  614. endif()
  615. if(UA_ENABLE_DISCOVERY)
  616. list(INSERT internal_headers 13 ${PROJECT_SOURCE_DIR}/src/server/ua_discovery_manager.h)
  617. list(APPEND lib_sources ${PROJECT_SOURCE_DIR}/src/server/ua_discovery_manager.c)
  618. endif()
  619. if(UA_ENABLE_PUBSUB)
  620. list(APPEND default_plugin_headers ${PROJECT_SOURCE_DIR}/plugins/include/open62541/plugin/pubsub_udp.h)
  621. list(APPEND default_plugin_sources ${PROJECT_SOURCE_DIR}/plugins/ua_pubsub_udp.c)
  622. if(UA_ENABLE_PUBSUB_ETH_UADP)
  623. list(APPEND default_plugin_headers ${PROJECT_SOURCE_DIR}/plugins/include/open62541/plugin/pubsub_ethernet.h)
  624. list(APPEND default_plugin_sources ${PROJECT_SOURCE_DIR}/plugins/ua_pubsub_ethernet.c)
  625. endif()
  626. if(UA_ENABLE_PUBSUB_MQTT)
  627. if(WIN32)
  628. MESSAGE(WARNING "Multithreading is enabled in MQTT plugin. This feature is under development and marked as EXPERIMENTAL")
  629. else()
  630. list(APPEND default_plugin_headers ${PROJECT_SOURCE_DIR}/deps/mqtt-c/mqtt_pal.h)
  631. list(APPEND default_plugin_sources ${PROJECT_SOURCE_DIR}/plugins/mqtt/ua_mqtt_pal.c)
  632. list(APPEND default_plugin_headers ${PROJECT_SOURCE_DIR}/deps/mqtt-c/mqtt.h)
  633. list(APPEND default_plugin_sources ${PROJECT_SOURCE_DIR}/deps/mqtt-c/mqtt.c)
  634. list(APPEND default_plugin_headers ${PROJECT_SOURCE_DIR}/plugins/ua_network_pubsub_mqtt.h)
  635. list(APPEND default_plugin_sources ${PROJECT_SOURCE_DIR}/plugins/ua_network_pubsub_mqtt.c)
  636. list(APPEND default_plugin_headers ${PROJECT_SOURCE_DIR}/plugins/mqtt/ua_mqtt_adapter.h)
  637. list(APPEND default_plugin_sources ${PROJECT_SOURCE_DIR}/plugins/mqtt/ua_mqtt_adapter.c)
  638. endif()
  639. endif()
  640. endif()
  641. if(UA_ENABLE_JSON_ENCODING)
  642. if(UA_ENABLE_PUBSUB)
  643. list(APPEND lib_sources ${PROJECT_SOURCE_DIR}/src/pubsub/ua_pubsub_networkmessage_json.c)
  644. endif()
  645. list(APPEND internal_headers ${PROJECT_SOURCE_DIR}/deps/jsmn/jsmn.h
  646. ${PROJECT_SOURCE_DIR}/deps/string_escape.h
  647. ${PROJECT_SOURCE_DIR}/deps/itoa.h
  648. ${PROJECT_SOURCE_DIR}/deps/atoi.h
  649. ${PROJECT_SOURCE_DIR}/src/ua_types_encoding_json.h)
  650. list(APPEND lib_sources ${PROJECT_SOURCE_DIR}/deps/jsmn/jsmn.c
  651. ${PROJECT_SOURCE_DIR}/deps/string_escape.c
  652. ${PROJECT_SOURCE_DIR}/deps/itoa.c
  653. ${PROJECT_SOURCE_DIR}/deps/atoi.c
  654. ${PROJECT_SOURCE_DIR}/src/ua_types_encoding_json.c)
  655. endif()
  656. if(UA_ENABLE_CUSTOM_LIBC)
  657. list(APPEND lib_sources ${PROJECT_SOURCE_DIR}/deps/musl/floatscan.c
  658. ${PROJECT_SOURCE_DIR}/deps/musl/vfprintf.c)
  659. endif()
  660. if(UA_ENABLE_SUBSCRIPTIONS)
  661. list(APPEND lib_sources ${PROJECT_SOURCE_DIR}/src/server/ua_subscription.c
  662. ${PROJECT_SOURCE_DIR}/src/server/ua_subscription_monitoreditem.c
  663. ${PROJECT_SOURCE_DIR}/src/server/ua_subscription_datachange.c)
  664. if(UA_ENABLE_SUBSCRIPTIONS_EVENTS)
  665. list(APPEND lib_sources ${PROJECT_SOURCE_DIR}/src/server/ua_subscription_events.c)
  666. endif()
  667. endif()
  668. if(UA_DEBUG_DUMP_PKGS)
  669. list(APPEND lib_sources ${PROJECT_SOURCE_DIR}/plugins/ua_debug_dump_pkgs.c)
  670. endif()
  671. if(UA_ENABLE_DISCOVERY_MULTICAST)
  672. # prepend in list, otherwise it complains that winsock2.h has to be included before windows.h
  673. set(internal_headers ${PROJECT_BINARY_DIR}/src_generated/mdnsd_config.h
  674. ${PROJECT_SOURCE_DIR}/deps/mdnsd/libmdnsd/1035.h
  675. ${PROJECT_SOURCE_DIR}/deps/mdnsd/libmdnsd/xht.h
  676. ${PROJECT_SOURCE_DIR}/deps/mdnsd/libmdnsd/sdtxt.h
  677. ${PROJECT_SOURCE_DIR}/deps/mdnsd/libmdnsd/mdnsd.h
  678. ${internal_headers} )
  679. set(lib_sources ${PROJECT_SOURCE_DIR}/src/server/ua_server_discovery_mdns.c
  680. ${PROJECT_SOURCE_DIR}/deps/mdnsd/libmdnsd/1035.c
  681. ${PROJECT_SOURCE_DIR}/deps/mdnsd/libmdnsd/xht.c
  682. ${PROJECT_SOURCE_DIR}/deps/mdnsd/libmdnsd/sdtxt.c
  683. ${PROJECT_SOURCE_DIR}/deps/mdnsd/libmdnsd/mdnsd.c
  684. ${lib_sources})
  685. endif()
  686. if(UA_BUILD_FUZZING OR UA_BUILD_OSS_FUZZ)
  687. set(lib_sources
  688. ${lib_sources}
  689. ${PROJECT_SOURCE_DIR}/tests/fuzz/custom_memory_manager.c)
  690. endif()
  691. #########################
  692. # Generate source files #
  693. #########################
  694. # List of nodeset files combined into NS0 generated file
  695. set(UA_FILE_NODESETS)
  696. if(UA_NAMESPACE_ZERO STREQUAL "FULL")
  697. if(NOT UA_FILE_NS0)
  698. set(UA_FILE_NS0 ${PROJECT_SOURCE_DIR}/deps/ua-nodeset/Schema/Opc.Ua.NodeSet2.xml)
  699. endif()
  700. set(UA_FILE_NODESETS "${UA_FILE_NS0}")
  701. if(NOT EXISTS "${UA_FILE_NS0}")
  702. message(FATAL_ERROR "File ${UA_FILE_NS0} not found. You probably need to initialize the git submodule for deps/ua-nodeset.")
  703. endif()
  704. set(UA_FILE_NODEIDS ${PROJECT_SOURCE_DIR}/deps/ua-nodeset/Schema/NodeIds.csv)
  705. set(UA_FILE_STATUSCODES ${PROJECT_SOURCE_DIR}/deps/ua-nodeset/Schema/StatusCode.csv)
  706. set(UA_FILE_TYPES_BSD ${PROJECT_SOURCE_DIR}/deps/ua-nodeset/Schema/Opc.Ua.Types.bsd)
  707. else()
  708. if(NOT UA_FILE_NS0)
  709. set(UA_FILE_NS0 ${PROJECT_SOURCE_DIR}/tools/schema/Opc.Ua.NodeSet2.Minimal.xml)
  710. endif()
  711. set(UA_FILE_NODESETS "${UA_FILE_NS0}")
  712. set(UA_FILE_DATATYPES ${PROJECT_SOURCE_DIR}/tools/schema/datatypes_minimal.txt)
  713. set(UA_FILE_NODEIDS ${PROJECT_SOURCE_DIR}/tools/schema/NodeIds.csv)
  714. set(UA_FILE_STATUSCODES ${PROJECT_SOURCE_DIR}/tools/schema/StatusCode.csv)
  715. set(UA_FILE_TYPES_BSD ${PROJECT_SOURCE_DIR}/tools/schema/Opc.Ua.Types.bsd)
  716. if(UA_ENABLE_METHODCALLS)
  717. list(APPEND UA_FILE_DATATYPES ${PROJECT_SOURCE_DIR}/tools/schema/datatypes_method.txt)
  718. endif()
  719. if(UA_ENABLE_SUBSCRIPTIONS)
  720. list(APPEND UA_FILE_DATATYPES ${PROJECT_SOURCE_DIR}/tools/schema/datatypes_subscriptions.txt)
  721. endif()
  722. if(UA_ENABLE_SUBSCRIPTIONS_EVENTS)
  723. list(APPEND UA_FILE_DATATYPES ${PROJECT_SOURCE_DIR}/tools/schema/datatypes_events.txt)
  724. list(APPEND UA_FILE_NODESETS ${PROJECT_SOURCE_DIR}/tools/schema/Opc.Ua.NodeSet2.EventsMinimal.xml)
  725. endif()
  726. if(UA_ENABLE_HISTORIZING)
  727. list(APPEND UA_FILE_DATATYPES ${PROJECT_SOURCE_DIR}/tools/schema/datatypes_historizing.txt)
  728. list(APPEND UA_FILE_NODESETS ${PROJECT_SOURCE_DIR}/tools/schema/Opc.Ua.NodeSet2.HistorizingMinimal.xml)
  729. endif()
  730. if(UA_ENABLE_DISCOVERY)
  731. list(APPEND UA_FILE_DATATYPES ${PROJECT_SOURCE_DIR}/tools/schema/datatypes_discovery.txt)
  732. endif()
  733. if(UA_ENABLE_QUERY)
  734. list(APPEND UA_FILE_DATATYPES ${PROJECT_SOURCE_DIR}/tools/schema/datatypes_query.txt)
  735. endif()
  736. if(UA_ENABLE_PUBSUB)
  737. list(APPEND UA_FILE_DATATYPES ${PROJECT_SOURCE_DIR}/tools/schema/datatypes_pubsub.txt)
  738. if(UA_ENABLE_PUBSUB_INFORMATIONMODEL)
  739. list(APPEND UA_FILE_NODESETS ${PROJECT_SOURCE_DIR}/tools/schema/Opc.Ua.NodeSet2.PubSubMinimal.xml)
  740. endif()
  741. endif()
  742. if(UA_ENABLE_DA)
  743. list(APPEND UA_FILE_DATATYPES ${PROJECT_SOURCE_DIR}/tools/schema/datatypes_dataaccess.txt)
  744. endif()
  745. if(UA_ENABLE_TYPEDESCRIPTION)
  746. list(APPEND UA_FILE_DATATYPES ${PROJECT_SOURCE_DIR}/tools/schema/datatypes_typedescription.txt)
  747. endif()
  748. endif()
  749. # standard-defined data types
  750. ua_generate_datatypes(
  751. BUILTIN
  752. NAME "types"
  753. TARGET_SUFFIX "types"
  754. NAMESPACE_IDX 0
  755. FILE_CSV "${UA_FILE_NODEIDS}"
  756. FILES_BSD "${UA_FILE_TYPES_BSD}"
  757. FILES_SELECTED ${UA_FILE_DATATYPES}
  758. )
  759. # transport data types
  760. ua_generate_datatypes(
  761. INTERNAL
  762. NAME "transport"
  763. TARGET_SUFFIX "transport"
  764. NAMESPACE_IDX 1
  765. FILE_CSV "${UA_FILE_NODEIDS}"
  766. FILES_BSD "${UA_FILE_TYPES_BSD}" "${PROJECT_SOURCE_DIR}/tools/schema/Custom.Opc.Ua.Transport.bsd"
  767. FILES_SELECTED "${PROJECT_SOURCE_DIR}/tools/schema/datatypes_transport.txt"
  768. )
  769. # statuscode explanation
  770. add_custom_command(OUTPUT ${PROJECT_BINARY_DIR}/src_generated/open62541/statuscodes.h
  771. ${PROJECT_BINARY_DIR}/src_generated/open62541/statuscodes.c
  772. PRE_BUILD
  773. COMMAND ${PYTHON_EXECUTABLE} ${PROJECT_SOURCE_DIR}/tools/generate_statuscode_descriptions.py
  774. ${UA_FILE_STATUSCODES} ${PROJECT_BINARY_DIR}/src_generated/open62541/statuscodes
  775. DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/tools/generate_statuscode_descriptions.py
  776. ${UA_FILE_STATUSCODES})
  777. # Header containing defines for all NodeIds
  778. ua_generate_nodeid_header(
  779. NAME "nodeids"
  780. ID_PREFIX "NS0"
  781. TARGET_SUFFIX "ids-ns0"
  782. FILE_CSV "${UA_FILE_NODEIDS}"
  783. )
  784. # we need a custom target to avoid that the generator is called concurrently and
  785. # thus overwriting files while the other thread is compiling
  786. add_custom_target(open62541-generator-statuscode DEPENDS
  787. ${PROJECT_BINARY_DIR}/src_generated/open62541/nodeids.h
  788. ${PROJECT_BINARY_DIR}/src_generated/open62541/statuscodes.h
  789. ${PROJECT_BINARY_DIR}/src_generated/open62541/statuscodes.c)
  790. if (UA_ENABLE_AMALGAMATION)
  791. # single-file release
  792. add_custom_command(OUTPUT ${PROJECT_BINARY_DIR}/open62541.h
  793. PRE_BUILD
  794. COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/tools/amalgamate.py
  795. ${OPEN62541_VER_COMMIT} ${CMAKE_CURRENT_BINARY_DIR}/open62541.h
  796. ${exported_headers} ${default_plugin_headers} ${ua_architecture_headers}
  797. DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/tools/amalgamate.py
  798. ${exported_headers} ${default_plugin_headers} ${ua_architecture_headers})
  799. add_custom_command(OUTPUT ${PROJECT_BINARY_DIR}/open62541.c
  800. PRE_BUILD
  801. COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/tools/amalgamate.py
  802. ${OPEN62541_VER_COMMIT} ${CMAKE_CURRENT_BINARY_DIR}/open62541.c
  803. ${internal_headers} ${lib_sources} ${default_plugin_sources} ${ua_architecture_sources}
  804. DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/tools/amalgamate.py ${internal_headers}
  805. ${lib_sources} ${default_plugin_sources} ${ua_architecture_sources} )
  806. add_custom_target(open62541-amalgamation-source DEPENDS ${PROJECT_BINARY_DIR}/open62541.c)
  807. add_custom_target(open62541-amalgamation-header DEPENDS ${PROJECT_BINARY_DIR}/open62541.h)
  808. add_dependencies(open62541-amalgamation-header open62541-generator-types)
  809. add_dependencies(open62541-amalgamation-source open62541-generator-types
  810. open62541-generator-transport open62541-generator-statuscode)
  811. endif()
  812. ua_generate_nodeset(
  813. NAME "ns0"
  814. FILE ${UA_FILE_NODESETS}
  815. INTERNAL
  816. IGNORE "${PROJECT_SOURCE_DIR}/tools/nodeset_compiler/NodeID_NS0_Base.txt"
  817. DEPENDS_TARGET "open62541-generator-types"
  818. )
  819. # stack protector and optimization needs to be disabled for the huge ns0 file, otherwise debian packaging fails due to long build times.
  820. # We also disable optimization on Appveyor builds, since they take almost an hour otherwise
  821. if(UA_PACK_DEBIAN OR (NOT "$ENV{APPVEYOR}" STREQUAL "") OR (
  822. (CMAKE_BUILD_TYPE STREQUAL "MinSizeRel" OR CMAKE_BUILD_TYPE STREQUAL "Release" OR CMAKE_BUILD_TYPE STREQUAL "RelWithDebInfo") AND (
  823. # List of compilers which have problems with the huge ns0 optimization
  824. (("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") AND (CMAKE_C_COMPILER_VERSION VERSION_LESS 7.0))
  825. )
  826. ))
  827. set_source_files_properties(${PROJECT_BINARY_DIR}/src_generated/open62541/namespace0_generated.c PROPERTIES COMPILE_FLAGS "-fno-stack-protector -O0")
  828. endif()
  829. #####################
  830. # Build the Library #
  831. #####################
  832. assign_source_group(${lib_sources})
  833. assign_source_group(${internal_headers})
  834. assign_source_group(${exported_headers})
  835. assign_source_group(${default_plugin_sources})
  836. assign_source_group(${ua_architecture_sources})
  837. if(UA_ENABLE_AMALGAMATION)
  838. add_library(open62541-object OBJECT ${PROJECT_BINARY_DIR}/open62541.c ${PROJECT_BINARY_DIR}/open62541.h)
  839. target_include_directories(open62541-object PRIVATE ${PROJECT_BINARY_DIR})
  840. target_include_directories(open62541-object PRIVATE "${ua_architecture_directories_to_include}")
  841. if(UA_ENABLE_ENCRYPTION)
  842. target_include_directories(open62541-object PRIVATE ${MBEDTLS_INCLUDE_DIRS})
  843. endif()
  844. # make sure the open62541_amalgamation target builds before so that amalgamation is finished and it is not executed again for open62541-object
  845. # and thus may overwrite the amalgamation result during multiprocessor compilation
  846. # the header is already a dependency of open62541 target itself
  847. add_dependencies(open62541-object
  848. open62541-amalgamation-header
  849. open62541-generator-types
  850. open62541-generator-transport
  851. open62541-generator-statuscode
  852. open62541-amalgamation-source)
  853. add_library(open62541 $<TARGET_OBJECTS:open62541-object>)
  854. # the only directory that needs to be included if open62541 (amalgameted) target from
  855. # the build directory is ${PROJECT_BINARY_DIR}, that contains the generated open62541.h
  856. target_include_directories(open62541 PUBLIC $<BUILD_INTERFACE:${PROJECT_BINARY_DIR}>)
  857. if(UA_COMPILE_AS_CXX)
  858. set_source_files_properties(${PROJECT_BINARY_DIR}/open62541.c PROPERTIES LANGUAGE CXX)
  859. endif()
  860. add_dependencies(open62541-amalgamation-source open62541-generator-namespace)
  861. add_dependencies(open62541-amalgamation-header open62541-generator-namespace)
  862. else()
  863. add_library(open62541-object OBJECT ${lib_sources} ${internal_headers} ${exported_headers})
  864. add_dependencies(open62541-object
  865. open62541-generator-types
  866. open62541-generator-transport
  867. open62541-generator-statuscode
  868. open62541-generator-namespace
  869. )
  870. target_include_directories(open62541-object PRIVATE ${PROJECT_SOURCE_DIR}/src)
  871. add_library(open62541-plugins OBJECT ${default_plugin_sources} ${ua_architecture_sources} ${exported_headers})
  872. add_dependencies(open62541-plugins open62541-generator-types open62541-generator-transport open62541-generator-namespace)
  873. target_include_directories(open62541-plugins PRIVATE ${PROJECT_SOURCE_DIR}/plugins)
  874. target_include_directories(open62541-plugins PRIVATE ${PROJECT_BINARY_DIR}/src_generated)
  875. target_compile_definitions(open62541-plugins PRIVATE -DUA_DYNAMIC_LINKING_EXPORT)
  876. set_target_properties(open62541-plugins PROPERTIES FOLDER "open62541/lib")
  877. add_library(open62541 $<TARGET_OBJECTS:open62541-object> $<TARGET_OBJECTS:open62541-plugins>)
  878. if(UA_COMPILE_AS_CXX)
  879. set_source_files_properties(${lib_sources} PROPERTIES LANGUAGE CXX)
  880. set_source_files_properties(${default_plugin_sources} ${ua_architecture_sources} PROPERTIES LANGUAGE CXX)
  881. endif()
  882. # Declare include directories
  883. function(include_directories_private)
  884. foreach(_include_dir IN ITEMS ${ARGN})
  885. target_include_directories(open62541-object PRIVATE ${_include_dir})
  886. target_include_directories(open62541-plugins PRIVATE ${_include_dir})
  887. endforeach()
  888. endfunction()
  889. function(include_directories_public)
  890. include_directories_private(${ARGN})
  891. foreach(_include_dir IN ITEMS ${ARGN})
  892. target_include_directories(open62541 PUBLIC $<BUILD_INTERFACE:${_include_dir}>)
  893. endforeach()
  894. endfunction()
  895. # Public includes
  896. include_directories_public(${ua_architecture_directories_to_include}
  897. "${PROJECT_SOURCE_DIR}/include"
  898. "${PROJECT_SOURCE_DIR}/plugins/include"
  899. "${PROJECT_SOURCE_DIR}/deps"
  900. "${PROJECT_SOURCE_DIR}/src/pubsub"
  901. "${PROJECT_BINARY_DIR}/src_generated")
  902. # Private includes
  903. include_directories_private("${PROJECT_BINARY_DIR}")
  904. if(UA_ENABLE_ENCRYPTION)
  905. include_directories_private(${MBEDTLS_INCLUDE_DIRS})
  906. endif()
  907. # Option-specific includes
  908. if(UA_ENABLE_DISCOVERY)
  909. include_directories_private("${PROJECT_SOURCE_DIR}/src/client")
  910. endif()
  911. endif()
  912. # Ensure that the open62541::open62541 alias can be used inside open62541's build
  913. add_library(open62541::open62541 ALIAS open62541)
  914. # Export Symbols
  915. target_compile_definitions(open62541-object PRIVATE -DUA_DYNAMIC_LINKING_EXPORT)
  916. target_compile_definitions(open62541 PRIVATE -DUA_DYNAMIC_LINKING_EXPORT)
  917. if (UA_ENABLE_DISCOVERY_MULTICAST)
  918. target_compile_definitions(open62541-object PRIVATE -DMDNSD_DYNAMIC_LINKING_EXPORT)
  919. target_compile_definitions(open62541 PRIVATE -DMDNSD_DYNAMIC_LINKING_EXPORT)
  920. endif()
  921. # Generate properly versioned shared library links on Linux
  922. SET_TARGET_PROPERTIES(open62541 PROPERTIES SOVERSION "${OPEN62541_VER_MAJOR}" VERSION "${OPEN62541_VER_MAJOR}.${OPEN62541_VER_MINOR}.${OPEN62541_VER_PATCH}")
  923. ##################################
  924. # Architectures changes #
  925. ##################################
  926. GET_PROPERTY(ua_architecture_add_definitions GLOBAL PROPERTY UA_ARCHITECTURE_ADD_DEFINITIONS)
  927. add_definitions(${ua_architecture_add_definitions})
  928. GET_PROPERTY(ua_architecture_remove_definitions GLOBAL PROPERTY UA_ARCHITECTURE_REMOVE_DEFINITIONS)
  929. if (NOT "${ua_architecture_remove_definitions}" STREQUAL "")
  930. string(REPLACE " " ";" ua_architecture_remove_definitions_list ${ua_architecture_remove_definitions})
  931. remove_definitions(${ua_architecture_remove_definitions_list})
  932. endif(NOT "${ua_architecture_remove_definitions}" STREQUAL "")
  933. GET_PROPERTY(ua_architecture_append_to_library GLOBAL PROPERTY UA_ARCHITECTURE_APPEND_TO_LIBRARY)
  934. list(APPEND open62541_LIBRARIES ${ua_architecture_append_to_library})
  935. target_compile_definitions(open62541 PUBLIC UA_ARCHITECTURE_${UA_ARCHITECTURE_UPPER})
  936. # DLL requires linking to dependencies
  937. target_link_libraries(open62541 ${open62541_LIBRARIES})
  938. ##########################
  939. # Build Selected Targets #
  940. ##########################
  941. # always include, builds with make doc
  942. add_subdirectory(doc)
  943. if(UA_BUILD_EXAMPLES)
  944. if(UA_ENABLE_AMALGAMATION)
  945. # Cannot compile tests with amalgamation. Not prepared for single header include
  946. message(FATAL_ERROR "Examples cannot be built with source amalgamation enabled")
  947. endif()
  948. add_subdirectory(examples)
  949. endif()
  950. if(UA_BUILD_UNIT_TESTS)
  951. if(UA_ENABLE_AMALGAMATION)
  952. # Cannot compile tests with amalgamation. Amalgamation uses the default plugins, not the testing plugins
  953. message(FATAL_ERROR "Unit tests cannot be generated with source amalgamation enabled")
  954. endif()
  955. enable_testing()
  956. add_subdirectory(tests)
  957. endif()
  958. if(UA_BUILD_FUZZING OR UA_BUILD_OSS_FUZZ OR UA_BUILD_FUZZING_CORPUS)
  959. add_subdirectory(tests/fuzz)
  960. endif()
  961. if(UA_BUILD_TOOLS)
  962. if(UA_ENABLE_JSON_ENCODING)
  963. add_subdirectory(tools/ua2json)
  964. endif()
  965. endif()
  966. ########################
  967. # Linting as target #
  968. ########################
  969. include(linting_target)
  970. ##########################
  971. # Installation #
  972. ##########################
  973. # invoke via `make install`
  974. # specify install location with `-DCMAKE_INSTALL_PREFIX=xyz`
  975. # Enable shared library with `-DBUILD_SHARED_LIBS=ON`
  976. set(cmake_configfile_install ${CMAKE_INSTALL_LIBDIR}/cmake/open62541)
  977. set(open62541_install_tools_dir share/open62541/tools)
  978. set(open62541_install_nodeset_dir share/open62541/tools/ua-nodeset)
  979. # This list of components allows to define a find_package requirement.
  980. # E.g.:
  981. # find_package(open62541 1.0.0 REQUIRED COMPONENTS Events Methods FullNamespace)
  982. set(open62541_enabled_components "")
  983. if(UA_NAMESPACE_ZERO STREQUAL "FULL")
  984. list(APPEND open62541_enabled_components "FullNamespace")
  985. endif()
  986. if(UA_ENABLE_METHODCALLS)
  987. list(APPEND open62541_enabled_components "Methods")
  988. endif()
  989. if(UA_ENABLE_SUBSCRIPTIONS)
  990. list(APPEND open62541_enabled_components "Subscriptions")
  991. endif()
  992. if(UA_ENABLE_PUBSUB)
  993. list(APPEND open62541_enabled_components "PubSub")
  994. endif()
  995. if(UA_ENABLE_ENCRYPTION)
  996. list(APPEND open62541_enabled_components "Encryption")
  997. endif()
  998. if(UA_ENABLE_AMALGAMATION)
  999. list(APPEND open62541_enabled_components "Amalgamation")
  1000. endif()
  1001. if(UA_ENABLE_HISTORIZING)
  1002. list(APPEND open62541_enabled_components "Historizing")
  1003. endif()
  1004. if(UA_ENABLE_EXPERIMENTAL_HISTORIZING)
  1005. list(APPEND open62541_enabled_components "ExperimentalHistorizing")
  1006. endif()
  1007. if(UA_ENABLE_SUBSCRIPTIONS_EVENTS)
  1008. list(APPEND open62541_enabled_components "Events")
  1009. endif()
  1010. if(UA_MULTITHREADING)
  1011. list(APPEND open62541_enabled_components "Multithreading")
  1012. endif()
  1013. if(UA_ENABLE_DISCOVERY)
  1014. list(APPEND open62541_enabled_components "Discovery")
  1015. endif()
  1016. if(UA_ENABLE_DISCOVERY_MULTICAST)
  1017. list(APPEND open62541_enabled_components "DiscoveryMulticast")
  1018. endif()
  1019. # export library (either static or shared depending on BUILD_SHARED_LIBS)
  1020. install(TARGETS open62541
  1021. EXPORT open62541Targets
  1022. LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
  1023. ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
  1024. RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX}
  1025. INCLUDES DESTINATION include)
  1026. if(UA_ENABLE_AMALGAMATION)
  1027. # Our default way of installation is the non-amalgamated version.
  1028. # See also https://github.com/open62541/open62541/pull/2292#discussion_r241106424
  1029. install(CODE "MESSAGE(WARNING \"Installation with UA_ENABLE_AMALGAMATION=ON is not recommended.\")")
  1030. endif()
  1031. include(CMakePackageConfigHelpers)
  1032. configure_package_config_file("${CMAKE_CURRENT_SOURCE_DIR}/tools/cmake/open62541Config.cmake.in"
  1033. "${CMAKE_CURRENT_BINARY_DIR}/open62541Config.cmake"
  1034. INSTALL_DESTINATION "${cmake_configfile_install}"
  1035. PATH_VARS open62541_install_tools_dir
  1036. open62541_install_nodeset_dir
  1037. open62541_enabled_components
  1038. )
  1039. set(open62541_VERSION)
  1040. get_target_property(open62541_VERSION open62541 VERSION)
  1041. write_basic_package_version_file("${CMAKE_CURRENT_BINARY_DIR}/open62541ConfigVersion.cmake"
  1042. VERSION ${open62541_VERSION}
  1043. COMPATIBILITY AnyNewerVersion)
  1044. install(EXPORT open62541Targets
  1045. FILE open62541Targets.cmake
  1046. DESTINATION "${cmake_configfile_install}"
  1047. NAMESPACE open62541::)
  1048. export(
  1049. TARGETS open62541
  1050. NAMESPACE open62541::
  1051. FILE ${CMAKE_CURRENT_BINARY_DIR}/open62541Targets.cmake
  1052. )
  1053. configure_file("${CMAKE_CURRENT_SOURCE_DIR}/tools/cmake/macros_public.cmake" "${CMAKE_CURRENT_BINARY_DIR}/open62541Macros.cmake" COPYONLY)
  1054. install(FILES "${CMAKE_CURRENT_BINARY_DIR}/open62541Config.cmake"
  1055. "${CMAKE_CURRENT_BINARY_DIR}/open62541ConfigVersion.cmake"
  1056. "${CMAKE_CURRENT_BINARY_DIR}/open62541Macros.cmake"
  1057. DESTINATION "${cmake_configfile_install}")
  1058. if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
  1059. install(FILES "${PROJECT_BINARY_DIR}/src_generated/open62541.pc"
  1060. DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig)
  1061. endif()
  1062. set(UA_install_tools_dirs "tools/certs"
  1063. "tools/nodeset_compiler"
  1064. "tools/schema"
  1065. "deps/ua-nodeset")
  1066. set(UA_install_tools_files "tools/generate_datatypes.py"
  1067. "tools/generate_nodeid_header.py"
  1068. "tools/generate_statuscode_descriptions.py")
  1069. install(DIRECTORY ${UA_install_tools_dirs}
  1070. DESTINATION ${open62541_install_tools_dir}
  1071. USE_SOURCE_PERMISSIONS
  1072. FILES_MATCHING
  1073. PATTERN "*"
  1074. PATTERN "*.pyc" EXCLUDE
  1075. )
  1076. install(FILES ${UA_install_tools_files} DESTINATION ${open62541_install_tools_dir})
  1077. if(NOT UA_ENABLE_AMALGAMATION)
  1078. # Recreate the include folder structure from the source also in /usr/lib/include/open62541
  1079. set(FILES_TO_INSTALL
  1080. ${exported_headers}
  1081. ${default_plugin_headers}
  1082. ${ua_architecture_headers})
  1083. set(BASE_PATH_MAIN "${PROJECT_SOURCE_DIR}/include/open62541")
  1084. set(BASE_PATH_PLUGINS "${PROJECT_SOURCE_DIR}/plugins/include/open62541")
  1085. set(BASE_PATH_ARCH "${PROJECT_SOURCE_DIR}/arch")
  1086. set(BASE_PATH_GENERATED "${PROJECT_BINARY_DIR}/src_generated/open62541")
  1087. set(BASE_PATH_DEPS "${PROJECT_SOURCE_DIR}/deps")
  1088. foreach ( file ${FILES_TO_INSTALL} )
  1089. # Construct a relative path by replacing any occurence of the absolute path
  1090. set(full_path ${file})
  1091. string(REPLACE ${BASE_PATH_MAIN} "" file ${file})
  1092. string(REPLACE ${BASE_PATH_PLUGINS} "" file ${file})
  1093. string(REPLACE ${BASE_PATH_ARCH} "" file ${file})
  1094. string(REPLACE ${BASE_PATH_GENERATED} "" file ${file})
  1095. string(REPLACE ${BASE_PATH_DEPS} "" file ${file})
  1096. get_filename_component( dir ${file} DIRECTORY )
  1097. install( FILES ${full_path} DESTINATION include/open62541${dir} )
  1098. endforeach()
  1099. else()
  1100. # Export amalgamated header open62541.h which is generated due to build of
  1101. # open62541-object
  1102. install(FILES ${PROJECT_BINARY_DIR}/open62541.h DESTINATION include)
  1103. endif()
  1104. add_subdirectory(tools/packaging)
  1105. ##################################
  1106. # Visual studio solution folders #
  1107. ##################################
  1108. set_property(GLOBAL PROPERTY USE_FOLDERS ON)
  1109. set_property(GLOBAL PROPERTY PREDEFINED_TARGETS_FOLDER "_CmakePredifinedTargets")
  1110. set_target_properties(open62541 PROPERTIES FOLDER "open62541/lib")
  1111. set_target_properties(open62541-object PROPERTIES FOLDER "open62541/lib")
  1112. if (UA_ENABLE_AMALGAMATION)
  1113. set_target_properties(open62541-amalgamation-header PROPERTIES FOLDER "open62541/lib")
  1114. set_target_properties(open62541-amalgamation-source PROPERTIES FOLDER "open62541/lib")
  1115. endif()
  1116. set_target_properties(open62541-generator-namespace PROPERTIES FOLDER "open62541/generators")
  1117. set_target_properties(open62541-generator-statuscode PROPERTIES FOLDER "open62541/generators")
  1118. set_target_properties(open62541-generator-transport PROPERTIES FOLDER "open62541/generators")
  1119. set_target_properties(open62541-generator-types PROPERTIES FOLDER "open62541/generators")