summaryrefslogtreecommitdiff
path: root/libodb/odb/details/config.h
blob: 4ad9a8d81a44ec2d4129ce06606041bff71453f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* file      : odb/details/config.h
 * license   : GNU GPL v2; see accompanying LICENSE file
 */

/* Static configuration file for build2 build.
 *
 * Note that currently we only support ODB_THREADS_NONE and ODB_THREADS_CXX11
 * but could also support the _POSIX and _WIN32 variants with a bit of effort.
 */

#ifndef ODB_DETAILS_CONFIG_H
#define ODB_DETAILS_CONFIG_H

#ifndef ODB_THREADS_NONE
#  define ODB_THREADS_CXX11
#endif

#endif /* ODB_DETAILS_CONFIG_H */