1/* atkmm library configuration header */
2
3#ifndef ATKMMCONFIG_H_INCLUDED
4#define ATKMMCONFIG_H_INCLUDED
5
6#include <glibmmconfig.h>
7
8/* Major version number of atkmm. */
9#undef ATKMM_MAJOR_VERSION
10
11/* Minor version number of atkmm. */
12#undef ATKMM_MINOR_VERSION
13
14/* Micro version number of atkmm. */
15#undef ATKMM_MICRO_VERSION
16
17/* Define when building atkmm as a static library. */
18#undef ATKMM_STATIC_LIB
19
20/* Enable DLL-specific stuff only when not building a static library */
21#if !defined(ATKMM_STATIC_LIB) defined(__MINGW32__) && !defined(__CYGWIN__)
22# define ATKMM_DLL 1
23#endif
24
25/* Do not dllexport as it is handled by gendef on MSVC */
26#if defined(ATKMM_DLL) && !defined(ATKMM_BUILD)
27# define ATKMM_API __declspec(dllimport)
28#else
29# define ATKMM_API
30#endif
31
32#endif /* !ATKMMCONFIG_H_INCLUDED */
33