ua_config.h.in 622 B

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