mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 10:54:24 -04:00
55 lines
1.1 KiB
C
55 lines
1.1 KiB
C
// Filename: ode_includes.h
|
|
// Created by: joswilso (30Jan07)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
//
|
|
// All use of this software is subject to the terms of the revised BSD
|
|
// license. You should have received a copy of this license along
|
|
// with this source code in a file named "LICENSE."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef PHYSX_INCLUDES_H
|
|
#define PHYSX_INCLUDES_H
|
|
|
|
|
|
// Platform-specific defines
|
|
#ifdef WIN32
|
|
#define NX32 1
|
|
#endif
|
|
|
|
#ifdef IS_LINUX
|
|
#define LINUX 1
|
|
#define NX32 1
|
|
#define CORELIB 1
|
|
#define NX_DISABLE_FLUIDS 1
|
|
#endif
|
|
|
|
#ifdef IS_FREEBSD
|
|
#endif
|
|
|
|
#ifdef IS_OSX
|
|
#endif
|
|
|
|
|
|
// Undefine min and max before ay PhysX headers get included
|
|
#undef min
|
|
#undef max
|
|
|
|
|
|
// PhysX headers
|
|
#include "NxPhysics.h"
|
|
#include "NxExtended.h"
|
|
#include "NxStream.h"
|
|
#include "NxCooking.h"
|
|
#include "NxController.h"
|
|
#include "NxControllerManager.h"
|
|
#include "NxBoxController.h"
|
|
#include "NxCapsuleController.h"
|
|
|
|
|
|
#endif // PHYSX_INCLUDES_H
|