-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.h.in
29 lines (25 loc) · 915 Bytes
/
config.h.in
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
#pragma once
#ifndef JSON5_STATIC_LIBRARY
# if _WIN32
# ifdef JSON5_DYNAMIC_LIBRARY_EXPORTS
# define JSON5_API __declspec(dllexport)
# else //JSON5_DYNAMIC_LIBRARY_EXPORTS
# define JSON5_API __declspec(dllimport)
# endif //JSON5_DYNAMIC_LIBRARY_EXPORTS
# else //_WIN32
# define JSON5_API __attribute__((visibility("default")))
# endif //_WIN32
#else //JSON5_STATIC_LIBRARY
# define JSON5_API
#endif //JSON5_STATIC_LIBRARY
#ifndef JSON_ENABLE_JSON5
#cmakedefine JSON_ENABLE_JSON5 @JSON_ENABLE_JSON5@
#endif //JSON_ENABLE_JSON5
#if JSON_ENABLE_JSON5
#define JSON5_ENABLE_COMMENTS @JSON5_ENABLE_COMMENTS@
#else
#endif //JSON_ENABLE_JSON5
#cmakedefine JSON_ENABLE_DEBUG_HANDLER @JSON_ENABLE_DEBUG_HANDLER@
#cmakedefine JSON_ENABLE_RAPID_HANDLER @JSON_ENABLE_RAPID_HANDLER@
#cmakedefine JSON_ENABLE_SIMD_PARSER @JSON_ENABLE_SIMD_PARSER@
#cmakedefine JSON_ENABLE_GRISU3 @JSON_ENABLE_GRISU3@