File: atkmmconfig.h.in

package info (click to toggle)
atkmm1.6 2.28.0-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,284 kB
  • sloc: xml: 5,642; sh: 4,197; perl: 236; cpp: 142; makefile: 88
file content (32 lines) | stat: -rw-r--r-- 800 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* atkmm library configuration header */

#ifndef ATKMMCONFIG_H_INCLUDED
#define ATKMMCONFIG_H_INCLUDED

#include <glibmmconfig.h>

/* Major version number of atkmm. */
#undef ATKMM_MAJOR_VERSION

/* Minor version number of atkmm. */
#undef ATKMM_MINOR_VERSION

/* Micro version number of atkmm. */
#undef ATKMM_MICRO_VERSION

/* Define when building atkmm as a static library. */
#undef ATKMM_STATIC_LIB

/* Enable DLL-specific stuff only when not building a static library */
#if !defined(ATKMM_STATIC_LIB) defined(__MINGW32__) && !defined(__CYGWIN__)
# define ATKMM_DLL 1
#endif

/* Do not dllexport as it is handled by gendef on MSVC */
#if defined(ATKMM_DLL) && !defined(ATKMM_BUILD)
# define ATKMM_API __declspec(dllimport)
#else
# define ATKMM_API
#endif

#endif /* !ATKMMCONFIG_H_INCLUDED */