config.h.in 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. #ifndef UA_CONFIG_H_
  5. #define UA_CONFIG_H_
  6. /**
  7. * open62541 Version
  8. * ----------------- */
  9. #define UA_OPEN62541_VER_MAJOR ${OPEN62541_VER_MAJOR}
  10. #define UA_OPEN62541_VER_MINOR ${OPEN62541_VER_MINOR}
  11. #define UA_OPEN62541_VER_PATCH ${OPEN62541_VER_PATCH}
  12. #define UA_OPEN62541_VER_LABEL "${OPEN62541_VER_LABEL}" /* Release candidate label, etc. */
  13. #define UA_OPEN62541_VER_COMMIT "${OPEN62541_VER_COMMIT}"
  14. /**
  15. * Feature Options
  16. * ---------------
  17. * Changing the feature options has no effect on a pre-compiled library. */
  18. #define UA_LOGLEVEL ${UA_LOGLEVEL}
  19. #ifndef UA_ENABLE_AMALGAMATION
  20. #cmakedefine UA_ENABLE_AMALGAMATION
  21. #endif
  22. #cmakedefine UA_ENABLE_METHODCALLS
  23. #cmakedefine UA_ENABLE_NODEMANAGEMENT
  24. #cmakedefine UA_ENABLE_SUBSCRIPTIONS
  25. #cmakedefine UA_ENABLE_PUBSUB
  26. #cmakedefine UA_ENABLE_PUBSUB_ETH_UADP
  27. #cmakedefine UA_ENABLE_PUBSUB_DELTAFRAMES
  28. #cmakedefine UA_ENABLE_PUBSUB_INFORMATIONMODEL
  29. #cmakedefine UA_ENABLE_PUBSUB_INFORMATIONMODEL_METHODS
  30. #cmakedefine UA_ENABLE_DA
  31. #cmakedefine UA_ENABLE_ENCRYPTION
  32. #cmakedefine UA_ENABLE_HISTORIZING
  33. #cmakedefine UA_ENABLE_MICRO_EMB_DEV_PROFILE
  34. #cmakedefine UA_ENABLE_EXPERIMENTAL_HISTORIZING
  35. #cmakedefine UA_ENABLE_SUBSCRIPTIONS_EVENTS
  36. #cmakedefine UA_ENABLE_JSON_ENCODING
  37. /* Multithreading */
  38. #cmakedefine UA_ENABLE_MULTITHREADING
  39. #cmakedefine UA_ENABLE_IMMUTABLE_NODES
  40. #if defined(UA_ENABLE_MULTITHREADING) && !defined(UA_ENABLE_IMMUTABLE_NODES)
  41. #error "The multithreading feature requires nodes to be immutable"
  42. #endif
  43. /* Advanced Options */
  44. #cmakedefine UA_ENABLE_CUSTOM_NODESTORE
  45. #cmakedefine UA_ENABLE_STATUSCODE_DESCRIPTIONS
  46. #cmakedefine UA_ENABLE_TYPENAMES
  47. #cmakedefine UA_ENABLE_NODESET_COMPILER_DESCRIPTIONS
  48. #cmakedefine UA_ENABLE_DETERMINISTIC_RNG
  49. #cmakedefine UA_ENABLE_DISCOVERY
  50. #cmakedefine UA_ENABLE_DISCOVERY_MULTICAST
  51. #cmakedefine UA_ENABLE_QUERY
  52. #cmakedefine UA_ENABLE_MALLOC_SINGLETON
  53. #cmakedefine UA_ENABLE_DISCOVERY_SEMAPHORE
  54. #cmakedefine UA_ENABLE_UNIT_TEST_FAILURE_HOOKS
  55. #cmakedefine UA_ENABLE_VALGRIND_INTERACTIVE
  56. #define UA_VALGRIND_INTERACTIVE_INTERVAL ${UA_VALGRIND_INTERACTIVE_INTERVAL}
  57. #cmakedefine UA_GENERATED_NAMESPACE_ZERO
  58. #cmakedefine UA_ENABLE_PUBSUB_CUSTOM_PUBLISH_HANDLING
  59. #cmakedefine UA_PACK_DEBIAN
  60. /* Options for Debugging */
  61. #cmakedefine UA_DEBUG
  62. #cmakedefine UA_DEBUG_DUMP_PKGS
  63. /**
  64. * Function Export
  65. * ---------------
  66. * On Win32: Define ``UA_DYNAMIC_LINKING`` and ``UA_DYNAMIC_LINKING_EXPORT`` in
  67. * order to export symbols for a DLL. Define ``UA_DYNAMIC_LINKING`` only to
  68. * import symbols from a DLL.*/
  69. #cmakedefine UA_DYNAMIC_LINKING
  70. /* Shortcuts for extern "C" declarations */
  71. #if !defined(_UA_BEGIN_DECLS)
  72. # ifdef __cplusplus
  73. # define _UA_BEGIN_DECLS extern "C" {
  74. # else
  75. # define _UA_BEGIN_DECLS
  76. # endif
  77. #endif
  78. #if !defined(_UA_END_DECLS)
  79. # ifdef __cplusplus
  80. # define _UA_END_DECLS }
  81. # else
  82. # define _UA_END_DECLS
  83. # endif
  84. #endif
  85. /* Select default architecture if non is selected through CMake or compiler define */
  86. #if ${UA_ARCHITECTURES_NODEF}
  87. # ifdef _WIN32
  88. # define UA_ARCHITECTURE_WIN32
  89. # else
  90. # define UA_ARCHITECTURE_POSIX
  91. # endif
  92. #endif
  93. #include "${UA_ARCHITECTURE}/ua_architecture.h"
  94. #endif /* UA_CONFIG_H_ */