System.pp 977 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // System.pp
  3. //
  4. // This is a system-wide configure file for ppremake. It's normally
  5. // #included from a package-specific Config.pp in the root of the
  6. // source tree. It makes variable declarations that are not normally
  7. // user-editable, but are required to set up the normal processing of
  8. // ppremake.
  9. //
  10. // Define DIR_TYPE as "src", since that's the most common kind of source
  11. // file.
  12. #if $[eq $[DIR_TYPE],]
  13. #define DIR_TYPE src
  14. #endif
  15. // Define where to look for the various kinds of system files.
  16. #if $[eq $[DEPENDS_FILE],]
  17. #define DEPENDS_FILE $[THISDIRPREFIX]Depends.pp
  18. #endif
  19. #if $[eq $[GLOBAL_FILE],]
  20. #define GLOBAL_FILE $[THISDIRPREFIX]Global.pp
  21. #endif
  22. #if $[eq $[GLOBAL_TYPE_FILE],]
  23. #define GLOBAL_TYPE_FILE $[THISDIRPREFIX]Global.$[BUILD_TYPE].pp
  24. #endif
  25. #if $[eq $[TEMPLATE_FILE],]
  26. #define TEMPLATE_FILE $[THISDIRPREFIX]Template.$[BUILD_TYPE].pp
  27. #endif
  28. #if $[eq $[DEPENDENCY_CACHE_FILENAME],]
  29. #define DEPENDENCY_CACHE_FILENAME pp.dep
  30. #endif