ua_config.h.in 692 B

123456789101112131415161718192021222324252627282930313233
  1. #ifndef UA_CONFIG_H_
  2. #define UA_CONFIG_H_
  3. /* Buid options and configuration (set by cmake) */
  4. #define UA_LOGLEVEL ${UA_LOGLEVEL}
  5. #cmakedefine UA_MULTITHREADING
  6. /* Function Export */
  7. #ifdef _WIN32
  8. # ifdef UA_DYNAMIC_LINKING
  9. # ifdef __GNUC__
  10. # define UA_EXPORT __attribute__ ((dllexport))
  11. # else
  12. # define UA_EXPORT __declspec(dllexport)
  13. # endif
  14. # else
  15. # ifdef __GNUC__
  16. # define UA_EXPORT __attribute__ ((dllexport))
  17. # else
  18. # define UA_EXPORT __declspec(dllimport)
  19. # endif
  20. # endif
  21. #else
  22. # if __GNUC__ || __clang__
  23. # define UA_EXPORT __attribute__ ((visibility ("default")))
  24. # else
  25. # define UA_EXPORT
  26. # endif
  27. #endif
  28. #endif /* UA_CONFIG_H_ */