CMake/Source/kwsys/Configure.h.in

36 lines
1.1 KiB
C
Raw Normal View History

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
2005-06-09 16:03:45 +04:00
/* Setup the export macro. */
2003-06-30 18:30:38 +04:00
#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
2005-06-09 16:03:45 +04:00
/* Disable useless warnings. */
#if !defined(@KWSYS_NAMESPACE@_NO_WARNING_DISABLE)
# if defined(_MSC_VER)
# pragma warning (disable: 4514) /* Unreferenced inline function removed. */
# endif
#endif
2003-06-30 18:30:38 +04:00
#endif