mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 02:42:49 -04:00
39 lines
1.5 KiB
Plaintext
39 lines
1.5 KiB
Plaintext
// 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
|