mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 20:52:26 -06:00
39 lines
977 B
ObjectPascal
39 lines
977 B
ObjectPascal
|
//
|
||
|
// 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
|