2003-06-30 18:30:38 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: KWSys - Kitware System Library
|
|
|
|
Module: $RCSfile$
|
|
|
|
|
2003-12-16 00:30:46 +03:00
|
|
|
Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
|
2003-06-30 18:30:38 +04:00
|
|
|
|
2003-12-16 00:30:46 +03:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
2003-06-30 18:30:38 +04:00
|
|
|
PURPOSE. See the above copyright notices for more information.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#ifndef @KWSYS_NAMESPACE@_Configure_h
|
|
|
|
#define @KWSYS_NAMESPACE@_Configure_h
|
|
|
|
|
|
|
|
#if defined(_WIN32) && @KWSYS_BUILD_SHARED@
|
|
|
|
# if defined(@KWSYS_NAMESPACE@_EXPORTS)
|
|
|
|
# define @KWSYS_NAMESPACE@_EXPORT __declspec(dllexport)
|
|
|
|
# else
|
2003-12-14 21:03:44 +03:00
|
|
|
# define @KWSYS_NAMESPACE@_EXPORT __declspec(dllimport)
|
2003-06-30 18:30:38 +04:00
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
# define @KWSYS_NAMESPACE@_EXPORT
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|