Configure.h.in 980 B

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