-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathSpatialaudioConfig.h.in
More file actions
37 lines (30 loc) · 1.66 KB
/
SpatialaudioConfig.h.in
File metadata and controls
37 lines (30 loc) · 1.66 KB
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
33
34
35
36
37
/*############################################################################*/
/*# #*/
/*# Config information about the libspatialaudio build #*/
/*# #*/
/*# Author(s): Marvin Scholz #*/
/*# Licence: LGPL + proprietary #*/
/*# #*/
/*############################################################################*/
#ifndef SPATIALAUDIO_CONFIG_H
#define SPATIALAUDIO_CONFIG_H
#define SPATIALAUDIO_MAJOR @CMAKE_PROJECT_VERSION_MAJOR@
#define SPATIALAUDIO_MINOR @CMAKE_PROJECT_VERSION_MINOR@
#define SPATIALAUDIO_PATCH @CMAKE_PROJECT_VERSION_PATCH@
#define SPATIALAUDIO_VERSION_STR "@CMAKE_PROJECT_VERSION@"
#define SPATIALAUDIO_VERSION ((@CMAKE_PROJECT_VERSION_MAJOR@ << 16) | (@CMAKE_PROJECT_VERSION_MINOR@ << 8) | @CMAKE_PROJECT_VERSION_PATCH@)
// True if libspatialaudio was built with libmysofa support
#cmakedefine01 SPATIALAUDIO_SUPPORTS_SOFA
// True if libspatialaudio was built with the integrated MIT HRTF
#cmakedefine01 SPATIALAUDIO_SUPPORTS_MIT_HRTF
// Defined if libspatialaudio was built statically
//
// This is merely a hint, as both the shared and
// static library could be built, in which case this
// would be unset and is expected to be set correctly
// by library consumers as only there it can be known
// against which library is linked.
#ifndef SPATIALAUDIO_STATIC
#cmakedefine SPATIALAUDIO_STATIC
#endif
#endif /* SPATIALAUDIO_CONFIG_H */