Start using atomic counters and set a CMake policy to the new (2.6) type.
[PaGMO.git] / config.h
blob34b4a7d72bd310c287546556adef18ff63ee064b
1 #ifndef PAGMO_CONFIG_H
2 #define PAGMO_CONFIG_H
4 #ifdef __GNUC__
5 #define GCC_VERSION (__GNUC__ * 100000 \
6 + __GNUC_MINOR__ * 1000 \
7 + __GNUC_PATCHLEVEL__ * 10)
8 #else
9 #error "The GCC compiler is needed to compile PaGMO."
10 #endif
12 #endif