1/***********
2AUTHORS: Ryan Govostes, Dan Liew
3
4BEGIN DATE: Sept, 2013
5
6Permission is hereby granted, free of charge, to any person obtaining a copy
7of this software and associated documentation files (the "Software"), to deal
8in the Software without restriction, including without limitation the rights
9to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10copies of the Software, and to permit persons to whom the Software is
11furnished to do so, subject to the following conditions:
12
13The above copyright notice and this permission notice shall be included in
14all copies or substantial portions of the Software.
15
16THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21OUT OF OR IN CONNECT
22**********************/
23
24
25#ifndef _CONFIG_H_
26#define _CONFIG_H_
27
28#if __cplusplus
29
30/* Where to find <hash_set> or <unordered_set>, if available. */
31#cmakedefine01 HAVE_HASH_SET
32#define HASH_SET_H ${HASH_SET_H}
33#define HASH_SET_CLASS ${HASH_SET_CLASS}
34#define HASH_SET_NAMESPACE ${HASH_SET_NAMESPACE}
35
36/* Where to find <hash_multiset> or <unordered_multiset>, if available. */
37#cmakedefine01 HAVE_HASH_MULTISET
38#define HASH_MULTISET_H ${HASH_MULTISET_H}
39#define HASH_MULTISET_CLASS ${HASH_MULTISET_CLASS}
40#define HASH_MULTISET_NAMESPACE ${HASH_MULTISET_NAMESPACE}
41
42/* Where to find <hash_map> or <unordered_map>, if available. */
43#cmakedefine01 HAVE_HASH_MAP
44#define HASH_MAP_H ${HASH_MAP_H}
45#define HASH_MAP_CLASS ${HASH_MAP_CLASS}
46#define HASH_MAP_NAMESPACE ${HASH_MAP_NAMESPACE}
47
48#endif
49
50
51#define STP_VERSION_MAJOR ${PROJECT_VERSION_MAJOR}
52#define STP_VERSION_MINOR ${PROJECT_VERSION_MINOR}
53#define STP_VERSION "${PROJECT_VERSION}"
54
55
56#cmakedefine01 USE_THREAD_LOCAL
57
58#endif
59