forked from panda3d/panda3d
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSystem.pp
More file actions
38 lines (30 loc) · 977 Bytes
/
System.pp
File metadata and controls
38 lines (30 loc) · 977 Bytes
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
//
// System.pp
//
// This is a system-wide configure file for ppremake. It's normally
// #included from a package-specific Config.pp in the root of the
// source tree. It makes variable declarations that are not normally
// user-editable, but are required to set up the normal processing of
// ppremake.
//
// Define DIR_TYPE as "src", since that's the most common kind of source
// file.
#if $[eq $[DIR_TYPE],]
#define DIR_TYPE src
#endif
// Define where to look for the various kinds of system files.
#if $[eq $[DEPENDS_FILE],]
#define DEPENDS_FILE $[THISDIRPREFIX]Depends.pp
#endif
#if $[eq $[GLOBAL_FILE],]
#define GLOBAL_FILE $[THISDIRPREFIX]Global.pp
#endif
#if $[eq $[GLOBAL_TYPE_FILE],]
#define GLOBAL_TYPE_FILE $[THISDIRPREFIX]Global.$[BUILD_TYPE].pp
#endif
#if $[eq $[TEMPLATE_FILE],]
#define TEMPLATE_FILE $[THISDIRPREFIX]Template.$[BUILD_TYPE].pp
#endif
#if $[eq $[DEPENDENCY_CACHE_FILENAME],]
#define DEPENDENCY_CACHE_FILENAME pp.dep
#endif