BsSLPrerequisites.h 955 B

123456789101112131415161718192021222324252627282930313233343536
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. #pragma once
  4. #include "BsPrerequisites.h"
  5. #if (BS_PLATFORM == BS_PLATFORM_WIN32) && !defined(__MINGW32__)
  6. # ifdef BS_SL_EXPORTS
  7. # define BS_SL_EXPORT __declspec(dllexport)
  8. # else
  9. # if defined( __MINGW32__ )
  10. # define BS_SL_EXPORT
  11. # else
  12. # define BS_SL_EXPORT __declspec(dllimport)
  13. # endif
  14. # endif
  15. #elif defined ( BS_GCC_VISIBILITY )
  16. # define BS_SL_EXPORT __attribute__ ((visibility("default")))
  17. #else
  18. # define BS_SL_EXPORTS
  19. #endif
  20. /** @addtogroup Plugins
  21. * @{
  22. */
  23. /** @defgroup BansheeSL BansheeSL
  24. * Implementation of the Banshee Shading Language.
  25. */
  26. /** @} */
  27. namespace BansheeEngine
  28. {
  29. extern const char* SystemName;
  30. }