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