Export.hpp 509 B

123456789101112131415161718
  1. /*
  2. * author: Patrick-Christopher Mattulat
  3. * e-mail: webmaster@lynarstudios.com
  4. */
  5. #ifndef LS_ATLANTIS_ENGINE_EXPORT_HPP
  6. #define LS_ATLANTIS_ENGINE_EXPORT_HPP
  7. #if defined(_WIN32) && defined(_MSC_VER)
  8. #define LS_ATLANTIS_DLL_EXPORT __declspec(dllexport)
  9. #define LS_ATLANTIS_DLL_IMPORT __declspec(dllimport)
  10. #define LS_ATLANTIS_DYNAMIC_GOAL LS_ATLANTIS_DLL_EXPORT
  11. #endif
  12. #if defined(unix) || defined(__APPLE__) || defined(_WIN32) && defined(__GNUC__)
  13. #define LS_ATLANTIS_DYNAMIC_GOAL
  14. #endif
  15. #endif