Configure.h.in 925 B

123456789101112131415161718192021222324252627
  1. /*=========================================================================
  2. Program: KWSys - Kitware System Library
  3. Module: $RCSfile$
  4. Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved.
  5. See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
  6. This software is distributed WITHOUT ANY WARRANTY; without even
  7. the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  8. PURPOSE. See the above copyright notices for more information.
  9. =========================================================================*/
  10. #ifndef @KWSYS_NAMESPACE@_Configure_h
  11. #define @KWSYS_NAMESPACE@_Configure_h
  12. #if defined(_WIN32) && @KWSYS_BUILD_SHARED@
  13. # if defined(@KWSYS_NAMESPACE@_EXPORTS)
  14. # define @KWSYS_NAMESPACE@_EXPORT __declspec(dllexport)
  15. # else
  16. # define @KWSYS_NAMESPACE@_EXPORT __declspec(dllimport)
  17. # endif
  18. #else
  19. # define @KWSYS_NAMESPACE@_EXPORT
  20. #endif
  21. #endif