-
Notifications
You must be signed in to change notification settings - Fork 5
/
libdef.any
39 lines (30 loc) · 1.07 KB
/
libdef.any
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
38
39
// Configures the model to use this AnyBody Managed Model Repostiory (AMMR
// Including this file ensures that the model can include the HumanModel
// and use BM configuration statements etc.
#ifndef LIBDEF_ANY
#define LIBDEF_ANY
#include "AMMR.version.any"
#define ANYBODY_APPLICATION_LIBRARY_NAME "AMMR" + AMMR_VERSION
#path ANYBODY_PATH_AMMR "."
#path ANYBODY_PATH_BODY "Body/AAUHuman/"
#path ANYBODY_PATH_MANDIBLE "Body/Mandible/"
#path ANYBODY_PATH_MODELUTILS "Tools/ModelUtilities/"
#path AMMR_TOOLS "Tools/"
#ifpathexists "../Documentation"
#path AMMR_PATH_DOC "../Documentation"
#else
#path AMMR_PATH_DOC "<ANYBODY_PATH_INSTALLDIR>/AMMR/Documentation"
#endif
#ifndef ANYBODY_PATH_OUTPUT
#ifpathexists "<ANYBODY_PATH_MAINFILEDIR>/Output/"
#path ANYBODY_PATH_OUTPUT "<ANYBODY_PATH_MAINFILEDIR>/Output/"
#else
#path ANYBODY_PATH_OUTPUT "<ANYBODY_PATH_MAINFILEDIR>"
#endif
#endif
#ifndef ANYMOCAP_MODEL
#path ANYMOCAP_PATH "Tools/AnyMoCap"
#path ANYMOCAP_MODEL "<ANYMOCAP_PATH>/AnyMocapModel.any"
#endif
#include "<ANYBODY_PATH_BODY>/HumanModel.defs.any"
#endif