Config.pp.sample 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. // This is a sample Config.pp that you may wish to use for your own
  2. // needs. For a longer list of configuration variables that you may
  3. // set in your own Config.pp file, see dtool/Config.pp.
  4. // What level of compiler optimization/debug symbols should we build?
  5. // The various optimize levels are defined as follows:
  6. //
  7. // 1 - No compiler optimizations, full debug symbols
  8. // 2 - Full compiler optimizations, full debug symbols
  9. // (if the compiler supports this)
  10. // 3 - Full compiler optimizations, no debug symbols
  11. // 4 - Full optimizations, no debug symbols, and asserts removed
  12. //
  13. // Setting this has no effect when BUILD_TYPE is "stopgap". In this
  14. // case, the compiler optimizations are selected by setting the
  15. // environment variable OPTIMIZE accordingly at compile time.
  16. #define OPTIMIZE 3
  17. // If you have installed the DirectX SDK in a particular location on
  18. // your machine (currently, Panda requires DirectX 8.1 in order to
  19. // build the DirectX interfaces), then you must indicate that location
  20. // here. These two variables point to the include and lib
  21. // directories, respectively.
  22. // Note the use of the Panda filename convention, with forward slashes
  23. // instead of backslashes, and /c/ instead of c:/ .
  24. #define DX_IPATH /c/DXSDK/include
  25. #define DX_LPATH /c/DXSDK/lib
  26. // If you have some early version of the DirectX8 SDK installed, but
  27. // not the most recent one, you may need to turn off the DirectX build
  28. // altogether by uncommenting the following line. (Defining a
  29. // variable to an empty string means setting it false.)
  30. //#define HAVE_DX