forked from panda3d/panda3d
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSources.pp
More file actions
91 lines (82 loc) · 2.55 KB
/
Sources.pp
File metadata and controls
91 lines (82 loc) · 2.55 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#begin lib_target
#define TARGET p3dtoolutil
#define LOCAL_LIBS p3dtoolbase
#if $[ne $[PLATFORM], FreeBSD]
#define UNIX_SYS_LIBS dl
#endif
#define WIN_SYS_LIBS shell32
#define OSX_SYS_FRAMEWORKS Foundation $[if $[not $[BUILD_IPHONE]],AppKit]
#define COMBINED_SOURCES $[TARGET]_composite1.cxx $[TARGET]_composite2.cxx
#define SOURCES \
checkPandaVersion.h \
config_dtoolutil.h \
dSearchPath.I dSearchPath.h \
executionEnvironment.I executionEnvironment.h filename.I \
filename.h \
$[if $[IS_OSX],filename_assist.mm filename_assist.h,] \
globPattern.I globPattern.h \
load_dso.h \
pandaFileStream.h pandaFileStream.I \
pandaFileStreamBuf.h \
pandaSystem.h pandaVersion.h \
panda_getopt.h panda_getopt_long.h panda_getopt_impl.h \
pfstream.h pfstream.I pfstreamBuf.h \
preprocess_argv.h \
string_utils.h string_utils.I \
stringDecoder.h stringDecoder.I \
textEncoder.h textEncoder.I \
unicodeLatinMap.h \
vector_string.h \
vector_src.h \
win32ArgParser.h
#define INCLUDED_SOURCES \
checkPandaVersion.cxx \
config_dtoolutil.cxx \
dSearchPath.cxx \
executionEnvironment.cxx filename.cxx \
globPattern.cxx \
load_dso.cxx \
pandaFileStream.cxx pandaFileStreamBuf.cxx \
pandaSystem.cxx \
panda_getopt_impl.cxx \
pfstreamBuf.cxx pfstream.cxx \
preprocess_argv.cxx \
string_utils.cxx \
stringDecoder.cxx \
textEncoder.cxx \
unicodeLatinMap.cxx \
vector_string.cxx \
win32ArgParser.cxx
#define INSTALL_HEADERS \
checkPandaVersion.h \
config_dtoolutil.h \
dSearchPath.I dSearchPath.h \
executionEnvironment.I executionEnvironment.h filename.I \
filename.h \
globPattern.I globPattern.h \
load_dso.h \
pandaFileStream.h pandaFileStream.I \
pandaFileStreamBuf.h \
pandaSystem.h pandaVersion.h \
panda_getopt.h panda_getopt_long.h panda_getopt_impl.h \
pfstream.h pfstream.I pfstreamBuf.h \
preprocess_argv.h \
string_utils.h string_utils.I \
stringDecoder.h stringDecoder.I \
textEncoder.h textEncoder.I \
unicodeLatinMap.h \
vector_string.h \
vector_src.cxx vector_src.h \
win32ArgParser.h
#end lib_target
#begin test_bin_target
#define TARGET test_pfstream
#define LOCAL_LIBS p3dtoolbase p3dtoolutil
#define SOURCES test_pfstream.cxx
#end test_bin_target
#begin test_bin_target
#define TARGET test_touch
#define LOCAL_LIBS p3dtoolbase p3dtoolutil
#define SOURCES test_touch.cxx
#end test_bin_target
#include $[THISDIRPREFIX]pandaVersion.h.pp