diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..d6dffd0a3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,52 @@ +# Prerequisites +*.d + +# Compiled Object files +*.slo +*.lo +*.o +*.obj +*.pdb + +# Precompiled Headers +*.gch +*.pch + +# Compiled Dynamic libraries +*.so +*.dylib +*.dll + +# Fortran module files +*.mod +*.smod + +# Compiled Static libraries +*.lai +*.la +*.a +*.lib + +# Executables +*.exe +*.out +*.app + +#VS files +*.vcxproj.* +*.log +*.tlog +*.map +*.exp + +PhysX_3.4/Source/compiler/vc15win64/.vs/PhysX/v16/.suo +PhysX_3.4/Source/compiler/vc15win64/.vs/PhysX/v16/Browse.VC.db +PhysX_3.4/Source/compiler/vc15win64/.vs/PhysX/v16/Browse.VC.db-shm +PhysX_3.4/Source/compiler/vc15win64/.vs/PhysX/v16/Browse.VC.db-wal +PhysX_3.4/Source/compiler/vc15win64/.vs/PhysX/v16/Browse.VC.opendb +PhysX_3.4/Source/compiler/vc15win64/.vs/PhysX/v16/Solution.VC.db +PhysX_3.4/Source/compiler/vc15win64/.vs/PhysX/v16/Solution.VC.db-shm +PhysX_3.4/Source/compiler/vc15win64/.vs/PhysX/v16/Solution.VC.db-wal +*.vcxproj +*.recipe +*.res diff --git a/PhysX_3.4/Include/extensions/PxMassProperties.h b/PhysX_3.4/Include/extensions/PxMassProperties.h index 33fe4a6e7..26f163dd3 100644 --- a/PhysX_3.4/Include/extensions/PxMassProperties.h +++ b/PhysX_3.4/Include/extensions/PxMassProperties.h @@ -1,4 +1,4 @@ -// +// // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions // are met: @@ -135,7 +135,7 @@ class PxMassProperties const PxMeshScale& s = c.scale; mass = unscaledMass * s.scale.x * s.scale.y * s.scale.z; - centerOfMass = s.rotation.rotate(s.scale.multiply(s.rotation.rotateInv(unscaledCoM))); + centerOfMass = s.rotation.rotateInv(s.scale.multiply(s.rotation.rotate(unscaledCoM))); inertiaTensor = scaleInertia(unscaledInertiaTensorCOM, s.rotation, s.scale); } break; diff --git a/PhysX_3.4/Source/LowLevel/software/src/PxsCCD.cpp b/PhysX_3.4/Source/LowLevel/software/src/PxsCCD.cpp index 5b63e0c66..d1b5399f6 100644 --- a/PhysX_3.4/Source/LowLevel/software/src/PxsCCD.cpp +++ b/PhysX_3.4/Source/LowLevel/software/src/PxsCCD.cpp @@ -1,4 +1,4 @@ -// +// // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions // are met: @@ -1005,7 +1005,7 @@ class PxsCCDAdvanceTask : public Cm::Task mCCDContext->getCCDContactModifyCallback()) { - PX_ALIGN(16, PxU8 dataBuffer[sizeof(PxModifiableContact) + sizeof(PxContactPatch)]); + PX_ALIGN(16, PxU8 dataBuffer[sizeof(PxModifiableContact) + sizeof(PxContactPatch) + 2* sizeof(PxU32)]); // add 2 PxU32 to support faceIndex, stored in the last U32 PxContactPatch* patch = reinterpret_cast(dataBuffer); PxModifiableContact* point = reinterpret_cast(patch + 1); @@ -1026,15 +1026,17 @@ class PxsCCDAdvanceTask : public Cm::Task patch->nbContacts = 1; patch->materialFlags = 0; - patch->internalFlags = 0; //44 //Can be a U16 - + patch->internalFlags = PxU32(PxContactPatch::eMODIFIABLE); //44 //Can be a U16 + if (pair.mG1 == PxGeometryType::eTRIANGLEMESH || pair.mG1 == PxGeometryType::eHEIGHTFIELD) + { + patch->internalFlags |= PxContactPatch::eHAS_FACE_INDICES; + PxU32* faceIndexBuffer = (reinterpret_cast(point + 1)) + 1; + *faceIndexBuffer = pair.mFaceIndex; + } point->contact = pair.mMinToiPoint; - point->normal = pair.mMinToiNormal; + point->normal = -pair.mMinToiNormal; //CCD normal is reversed - //KS - todo - reintroduce face indices!!!! - //point.internalFaceIndex0 = PXC_CONTACT_NO_FACE_INDEX; - //point.internalFaceIndex1 = pair.mFaceIndex; point->materialIndex0 = pair.mMaterialIndex0; point->materialIndex1 = pair.mMaterialIndex1; point->dynamicFriction = pair.mDynamicFriction; @@ -1055,7 +1057,7 @@ class PxsCCDAdvanceTask : public Cm::Task pair.mStaticFriction = point->staticFriction; pair.mRestitution = point->restitution; pair.mMinToiPoint = point->contact; - pair.mMinToiNormal = point->normal; + pair.mMinToiNormal = -point->normal; //reverse back normal from contact modification } @@ -2053,5 +2055,3 @@ void PxsCCDContext::runCCDModifiableContact(PxModifiableContact* PX_RESTRICT con } //namespace physx - - diff --git a/PhysX_3.4/Source/LowLevelDynamics/src/DyContactPrep4.cpp b/PhysX_3.4/Source/LowLevelDynamics/src/DyContactPrep4.cpp index 96d2e0d56..846375d6e 100644 --- a/PhysX_3.4/Source/LowLevelDynamics/src/DyContactPrep4.cpp +++ b/PhysX_3.4/Source/LowLevelDynamics/src/DyContactPrep4.cpp @@ -1,4 +1,4 @@ -// +// // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions // are met: @@ -532,7 +532,8 @@ static void setupFinalizeSolverConstraints4(PxSolverContactDesc* PX_RESTRICT des const Vec4V dotDelAngVel0 = V4MulAdd(delAngVel0X, delAngVel0X, V4MulAdd(delAngVel0Y, delAngVel0Y, V4Mul(delAngVel0Z, delAngVel0Z))); const Vec4V dotRaXnAngVel0 = V4MulAdd(raXnZ, angVelT20, V4MulAdd(raXnY, angVelT10, V4Mul(raXnX, angVelT00))); - Vec4V unitResponse = V4MulAdd(invMass0D0, angDom0, dotDelAngVel0); + Vec4V unitResponse = V4MulAdd(dotDelAngVel0, angDom0, invMass0D0); + Vec4V vrel = V4Add(relNorVel, dotRaXnAngVel0); @@ -1528,5 +1529,3 @@ SolverConstraintPrepState::Enum createFinalizeSolverContacts4( } } - - diff --git a/PhysX_3.4/Source/PhysXExtensions/src/ExtJoint.h b/PhysX_3.4/Source/PhysXExtensions/src/ExtJoint.h index 6b65f29fc..7e7229c05 100644 --- a/PhysX_3.4/Source/PhysXExtensions/src/ExtJoint.h +++ b/PhysX_3.4/Source/PhysXExtensions/src/ExtJoint.h @@ -1,4 +1,4 @@ -// +// // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions // are met: @@ -211,6 +211,26 @@ namespace Ext return actor->getGlobalPose(); } + static PxTransform getBodyPose(const PxRigidActor* actor) + { + if (!actor) + return PxTransform(PxIdentity); + else if (actor->is()) + return actor->getGlobalPose(); + else + return actor->getGlobalPose() * static_cast(actor)->getCMassLocalPose(); + } + + static PxTransform getComLocal(PxRigidActor* actor) + { + if (!actor) + return PxTransform(PxIdentity); + else if (actor->getType() == PxActorType::eRIGID_DYNAMIC || actor->getType() == PxActorType::eARTICULATION_LINK) + return static_cast(actor)->getCMassLocalPose(); + else + return PxTransform(PxIdentity); + } + void getActorVelocity(const PxRigidActor* actor, PxVec3& linear, PxVec3& angular) const { if(!actor || actor->is()) @@ -224,13 +244,13 @@ namespace Ext } - PxTransform getRelativeTransform() const + PxTransform getRelativeTransform() const { PxRigidActor* actor0, * actor1; mPxConstraint->getActors(actor0, actor1); - const PxTransform t0 = getGlobalPose(actor0) * mLocalPose[0]; - const PxTransform t1 = getGlobalPose(actor1) * mLocalPose[1]; - return t0.transformInv(t1); + PxTransform c2b0 = getGlobalPose(actor0).transform(mLocalPose[0]), + c2b1 = getGlobalPose(actor1).transform(mLocalPose[1]); + return c2b0.transformInv(c2b1); } PxVec3 getRelativeLinearVelocity() const @@ -239,26 +259,36 @@ namespace Ext PxVec3 l0, a0, l1, a1; mPxConstraint->getActors(actor0, actor1); - PxTransform t0 = getCom(actor0), t1 = getCom(actor1); + //COM to world + PxTransform t0 = getBodyPose(actor0), + t1 = getBodyPose(actor1); + + //joint frame to COM + PxTransform c2b0 = getComLocal(actor0).transformInv(mLocalPose[0]), + c2b1 = getComLocal(actor1).transformInv(mLocalPose[1]); + getActorVelocity(actor0, l0, a0); getActorVelocity(actor1, l1, a1); - PxVec3 p0 = t0.q.rotate(mLocalPose[0].p), - p1 = t1.q.rotate(mLocalPose[1].p); - return t0.transformInv(l1 - a1.cross(p1) - l0 + a0.cross(p0)); + PxVec3 cv0ToWorld = l0 + a0.cross(t0.rotate(c2b0.p)), + cv1ToWorld = l1 + a1.cross(t1.rotate(c2b1.p)); + + PxQuat q0 = t0.q * c2b0.q; + + return q0.rotateInv(cv1ToWorld - cv0ToWorld); } - PxVec3 getRelativeAngularVelocity() const + PxVec3 getRelativeAngularVelocity() const { PxRigidActor* actor0, * actor1; PxVec3 l0, a0, l1, a1; mPxConstraint->getActors(actor0, actor1); - PxTransform t0 = getCom(actor0); + PxQuat cq0 = getGlobalPose(actor0).q * mLocalPose[0].q; getActorVelocity(actor0, l0, a0); getActorVelocity(actor1, l1, a1); - return t0.transformInv(a1 - a0); + return cq0.rotateInv(a1 - a0); } diff --git a/PhysX_3.4/Source/compiler/vc15win64/LowLevel.vcxproj b/PhysX_3.4/Source/compiler/vc15win64/LowLevel.vcxproj index 00dcc5dee..3501a81ac 100644 --- a/PhysX_3.4/Source/compiler/vc15win64/LowLevel.vcxproj +++ b/PhysX_3.4/Source/compiler/vc15win64/LowLevel.vcxproj @@ -1,370 +1,378 @@ - - - debug - x64 - - - checked - x64 - - - profile - x64 - - - release - x64 - - - - {2A1F82AF-85E5-26A0-BFE0-1F8D0006DA7A} - LowLevel - - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - - - - - - - - - - - - - - - - ./../../../Lib/vc15win64\ - ./x64/LowLevel/debug\ - .lib - $(ProjectName)DEBUG - AllRules.ruleset - - - - - - true - false - Fast - UninitializedLocalUsageCheck - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /Zi /d2Zi+ - Disabled - ./../../../../Externals/nvToolsExt/1/include;./../../PhysXGpu/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include;./../../../Include/GeomUtils;./../../Common/src;./../../Common/src/windows;./../../PhysXProfile/src;./../../PhysXProfile/include;./../../GeomUtils/headers;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../GeomUtils/src;./../../LowLevel/API/include;./../../LowLevel/common/include;./../../LowLevel/common/include/collision;./../../LowLevel/common/include/pipeline;./../../LowLevel/common/include/pipeline/windows;./../../LowLevel/common/include/utils;./../../LowLevel/software/include;./../../LowLevel/software/include/windows;./../../LowLevelDynamics/include;./../../LowLevelDynamics/include/windows;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=DEBUG;%(PreprocessorDefinitions) - false - Level4 - MultiThreadedDebug - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName)DEBUG.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../Lib/vc15win64\ - ./x64/LowLevel/checked\ - .lib - $(ProjectName)CHECKED - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../../../Externals/nvToolsExt/1/include;./../../PhysXGpu/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include;./../../../Include/GeomUtils;./../../Common/src;./../../Common/src/windows;./../../PhysXProfile/src;./../../PhysXProfile/include;./../../GeomUtils/headers;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../GeomUtils/src;./../../LowLevel/API/include;./../../LowLevel/common/include;./../../LowLevel/common/include/collision;./../../LowLevel/common/include/pipeline;./../../LowLevel/common/include/pipeline/windows;./../../LowLevel/common/include/utils;./../../LowLevel/software/include;./../../LowLevel/software/include/windows;./../../LowLevelDynamics/include;./../../LowLevelDynamics/include/windows;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=CHECKED;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName)CHECKED.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../Lib/vc15win64\ - ./x64/LowLevel/profile\ - .lib - $(ProjectName)PROFILE - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../../../Externals/nvToolsExt/1/include;./../../PhysXGpu/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include;./../../../Include/GeomUtils;./../../Common/src;./../../Common/src/windows;./../../PhysXProfile/src;./../../PhysXProfile/include;./../../GeomUtils/headers;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../GeomUtils/src;./../../LowLevel/API/include;./../../LowLevel/common/include;./../../LowLevel/common/include/collision;./../../LowLevel/common/include/pipeline;./../../LowLevel/common/include/pipeline/windows;./../../LowLevel/common/include/utils;./../../LowLevel/software/include;./../../LowLevel/software/include/windows;./../../LowLevelDynamics/include;./../../LowLevelDynamics/include/windows;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=PROFILE;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /INCREMENTAL:NO - ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName)PROFILE.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../Lib/vc15win64\ - ./x64/LowLevel/release\ - .lib - $(ProjectName) - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../../../Externals/nvToolsExt/1/include;./../../PhysXGpu/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include;./../../../Include/GeomUtils;./../../Common/src;./../../Common/src/windows;./../../PhysXProfile/src;./../../PhysXProfile/include;./../../GeomUtils/headers;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../GeomUtils/src;./../../LowLevel/API/include;./../../LowLevel/common/include;./../../LowLevel/common/include/collision;./../../LowLevel/common/include/pipeline;./../../LowLevel/common/include/pipeline/windows;./../../LowLevel/common/include/utils;./../../LowLevel/software/include;./../../LowLevel/software/include/windows;./../../LowLevelDynamics/include;./../../LowLevelDynamics/include/windows;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /INCREMENTAL:NO - ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + debug + x64 + + + checked + x64 + + + profile + x64 + + + release + x64 + + + + {2A1F82AF-85E5-26A0-BFE0-1F8D0006DA7A} + LowLevel + + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + + + + + + + + + + + + + + + + ./../../../Lib/vc15win64\ + ./x64/LowLevel/debug\ + .lib + $(ProjectName)DEBUG + AllRules.ruleset + + + + + + false + false + Fast + UninitializedLocalUsageCheck + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /Zi /d2Zi+ + Disabled + ./../../../../Externals/nvToolsExt/1/include;./../../PhysXGpu/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include;./../../../Include/GeomUtils;./../../Common/src;./../../Common/src/windows;./../../PhysXProfile/src;./../../PhysXProfile/include;./../../GeomUtils/headers;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../GeomUtils/src;./../../LowLevel/API/include;./../../LowLevel/common/include;./../../LowLevel/common/include/collision;./../../LowLevel/common/include/pipeline;./../../LowLevel/common/include/pipeline/windows;./../../LowLevel/common/include/utils;./../../LowLevel/software/include;./../../LowLevel/software/include/windows;./../../LowLevelDynamics/include;./../../LowLevelDynamics/include/windows;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=DEBUG;%(PreprocessorDefinitions) + false + Level4 + MultiThreadedDebug + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName)DEBUG.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../Lib/vc15win64\ + ./x64/LowLevel/checked\ + .lib + $(ProjectName)CHECKED + AllRules.ruleset + + + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../../../Externals/nvToolsExt/1/include;./../../PhysXGpu/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include;./../../../Include/GeomUtils;./../../Common/src;./../../Common/src/windows;./../../PhysXProfile/src;./../../PhysXProfile/include;./../../GeomUtils/headers;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../GeomUtils/src;./../../LowLevel/API/include;./../../LowLevel/common/include;./../../LowLevel/common/include/collision;./../../LowLevel/common/include/pipeline;./../../LowLevel/common/include/pipeline/windows;./../../LowLevel/common/include/utils;./../../LowLevel/software/include;./../../LowLevel/software/include/windows;./../../LowLevelDynamics/include;./../../LowLevelDynamics/include/windows;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=CHECKED;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName)CHECKED.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../Lib/vc15win64\ + ./x64/LowLevel/profile\ + .lib + $(ProjectName)PROFILE + AllRules.ruleset + + + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../../../Externals/nvToolsExt/1/include;./../../PhysXGpu/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include;./../../../Include/GeomUtils;./../../Common/src;./../../Common/src/windows;./../../PhysXProfile/src;./../../PhysXProfile/include;./../../GeomUtils/headers;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../GeomUtils/src;./../../LowLevel/API/include;./../../LowLevel/common/include;./../../LowLevel/common/include/collision;./../../LowLevel/common/include/pipeline;./../../LowLevel/common/include/pipeline/windows;./../../LowLevel/common/include/utils;./../../LowLevel/software/include;./../../LowLevel/software/include/windows;./../../LowLevelDynamics/include;./../../LowLevelDynamics/include/windows;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=PROFILE;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /INCREMENTAL:NO + ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName)PROFILE.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../Lib/vc15win64\ + ./x64/LowLevel/release\ + .lib + $(ProjectName) + AllRules.ruleset + + + + + false + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../../../Externals/nvToolsExt/1/include;./../../PhysXGpu/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include;./../../../Include/GeomUtils;./../../Common/src;./../../Common/src/windows;./../../PhysXProfile/src;./../../PhysXProfile/include;./../../GeomUtils/headers;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../GeomUtils/src;./../../LowLevel/API/include;./../../LowLevel/common/include;./../../LowLevel/common/include/collision;./../../LowLevel/common/include/pipeline;./../../LowLevel/common/include/pipeline/windows;./../../LowLevel/common/include/utils;./../../LowLevel/software/include;./../../LowLevel/software/include/windows;./../../LowLevelDynamics/include;./../../LowLevelDynamics/include/windows;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /INCREMENTAL:NO + ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName).lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/PhysX_3.4/Source/compiler/vc15win64/LowLevelAABB.vcxproj b/PhysX_3.4/Source/compiler/vc15win64/LowLevelAABB.vcxproj index 49255384d..90166f84f 100644 --- a/PhysX_3.4/Source/compiler/vc15win64/LowLevelAABB.vcxproj +++ b/PhysX_3.4/Source/compiler/vc15win64/LowLevelAABB.vcxproj @@ -1,256 +1,264 @@ - - - debug - x64 - - - checked - x64 - - - profile - x64 - - - release - x64 - - - - {3059DE83-BFC9-5922-86A0-A9D1091E5EE0} - LowLevelAABB - - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - - - - - - - - - - - - - - - - ./../../../Lib/vc15win64\ - ./x64/LowLevelAABB/debug\ - .lib - $(ProjectName)DEBUG - AllRules.ruleset - - - - - - true - false - Fast - UninitializedLocalUsageCheck - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /Zi /d2Zi+ - Disabled - ./../../../../Externals/nvToolsExt/1/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../Common/src/windows;./../../GeomUtils/headers;./../../GeomUtils/src;./../../Common/src;./../../LowLevel/API/include;./../../LowLevel/common/include/utils;./../../LowLevel/common/include/pipeline;./../../LowLevelAABB/include;./../../LowLevelAABB/src;./../../GpuBroadPhase/include;./../../GpuBroadPhase/src;./../../LowLevelAABB/windows/include;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=DEBUG;%(PreprocessorDefinitions) - false - Level4 - MultiThreadedDebug - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName)DEBUG.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../Lib/vc15win64\ - ./x64/LowLevelAABB/checked\ - .lib - $(ProjectName)CHECKED - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../../../Externals/nvToolsExt/1/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../Common/src/windows;./../../GeomUtils/headers;./../../GeomUtils/src;./../../Common/src;./../../LowLevel/API/include;./../../LowLevel/common/include/utils;./../../LowLevel/common/include/pipeline;./../../LowLevelAABB/include;./../../LowLevelAABB/src;./../../GpuBroadPhase/include;./../../GpuBroadPhase/src;./../../LowLevelAABB/windows/include;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=CHECKED;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName)CHECKED.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../Lib/vc15win64\ - ./x64/LowLevelAABB/profile\ - .lib - $(ProjectName)PROFILE - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../../../Externals/nvToolsExt/1/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../Common/src/windows;./../../GeomUtils/headers;./../../GeomUtils/src;./../../Common/src;./../../LowLevel/API/include;./../../LowLevel/common/include/utils;./../../LowLevel/common/include/pipeline;./../../LowLevelAABB/include;./../../LowLevelAABB/src;./../../GpuBroadPhase/include;./../../GpuBroadPhase/src;./../../LowLevelAABB/windows/include;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=PROFILE;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /INCREMENTAL:NO - ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName)PROFILE.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../Lib/vc15win64\ - ./x64/LowLevelAABB/release\ - .lib - $(ProjectName) - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../../../Externals/nvToolsExt/1/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../Common/src/windows;./../../GeomUtils/headers;./../../GeomUtils/src;./../../Common/src;./../../LowLevel/API/include;./../../LowLevel/common/include/utils;./../../LowLevel/common/include/pipeline;./../../LowLevelAABB/include;./../../LowLevelAABB/src;./../../GpuBroadPhase/include;./../../GpuBroadPhase/src;./../../LowLevelAABB/windows/include;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /INCREMENTAL:NO - ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + debug + x64 + + + checked + x64 + + + profile + x64 + + + release + x64 + + + + {3059DE83-BFC9-5922-86A0-A9D1091E5EE0} + LowLevelAABB + + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + + + + + + + + + + + + + + + + ./../../../Lib/vc15win64\ + ./x64/LowLevelAABB/debug\ + .lib + $(ProjectName)DEBUG + AllRules.ruleset + + + + + + false + false + Fast + UninitializedLocalUsageCheck + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /Zi /d2Zi+ + Disabled + ./../../../../Externals/nvToolsExt/1/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../Common/src/windows;./../../GeomUtils/headers;./../../GeomUtils/src;./../../Common/src;./../../LowLevel/API/include;./../../LowLevel/common/include/utils;./../../LowLevel/common/include/pipeline;./../../LowLevelAABB/include;./../../LowLevelAABB/src;./../../GpuBroadPhase/include;./../../GpuBroadPhase/src;./../../LowLevelAABB/windows/include;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=DEBUG;%(PreprocessorDefinitions) + false + Level4 + MultiThreadedDebug + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName)DEBUG.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../Lib/vc15win64\ + ./x64/LowLevelAABB/checked\ + .lib + $(ProjectName)CHECKED + AllRules.ruleset + + + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../../../Externals/nvToolsExt/1/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../Common/src/windows;./../../GeomUtils/headers;./../../GeomUtils/src;./../../Common/src;./../../LowLevel/API/include;./../../LowLevel/common/include/utils;./../../LowLevel/common/include/pipeline;./../../LowLevelAABB/include;./../../LowLevelAABB/src;./../../GpuBroadPhase/include;./../../GpuBroadPhase/src;./../../LowLevelAABB/windows/include;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=CHECKED;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName)CHECKED.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../Lib/vc15win64\ + ./x64/LowLevelAABB/profile\ + .lib + $(ProjectName)PROFILE + AllRules.ruleset + + + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../../../Externals/nvToolsExt/1/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../Common/src/windows;./../../GeomUtils/headers;./../../GeomUtils/src;./../../Common/src;./../../LowLevel/API/include;./../../LowLevel/common/include/utils;./../../LowLevel/common/include/pipeline;./../../LowLevelAABB/include;./../../LowLevelAABB/src;./../../GpuBroadPhase/include;./../../GpuBroadPhase/src;./../../LowLevelAABB/windows/include;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=PROFILE;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /INCREMENTAL:NO + ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName)PROFILE.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../Lib/vc15win64\ + ./x64/LowLevelAABB/release\ + .lib + $(ProjectName) + AllRules.ruleset + + + + + false + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../../../Externals/nvToolsExt/1/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../Common/src/windows;./../../GeomUtils/headers;./../../GeomUtils/src;./../../Common/src;./../../LowLevel/API/include;./../../LowLevel/common/include/utils;./../../LowLevel/common/include/pipeline;./../../LowLevelAABB/include;./../../LowLevelAABB/src;./../../GpuBroadPhase/include;./../../GpuBroadPhase/src;./../../LowLevelAABB/windows/include;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /INCREMENTAL:NO + ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName).lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/PhysX_3.4/Source/compiler/vc15win64/LowLevelCloth.vcxproj b/PhysX_3.4/Source/compiler/vc15win64/LowLevelCloth.vcxproj index 39d661839..7222aac45 100644 --- a/PhysX_3.4/Source/compiler/vc15win64/LowLevelCloth.vcxproj +++ b/PhysX_3.4/Source/compiler/vc15win64/LowLevelCloth.vcxproj @@ -1,330 +1,338 @@ - - - debug - x64 - - - checked - x64 - - - profile - x64 - - - release - x64 - - - - {24546E40-3140-20F4-C5AC-E4001B9880B8} - LowLevelCloth - - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - - - - - - - - - - - - - - - - ./../../../Lib/vc15win64\ - ./x64/LowLevelCloth/debug\ - .lib - $(ProjectName)DEBUG - AllRules.ruleset - - - - - - true - false - Fast - UninitializedLocalUsageCheck - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /Zi /d2Zi+ - Disabled - ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include;./../../../Include/common;./../../Common/src;./../../LowLevelCloth/include;./../../LowLevelCloth/src;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=DEBUG;%(PreprocessorDefinitions) - false - Level4 - MultiThreadedDebug - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - %(AdditionalDependencies) - $(OutDir)$(ProjectName)DEBUG.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../Lib/vc15win64\ - ./x64/LowLevelCloth/checked\ - .lib - $(ProjectName)CHECKED - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include;./../../../Include/common;./../../Common/src;./../../LowLevelCloth/include;./../../LowLevelCloth/src;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=CHECKED;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - %(AdditionalDependencies) - $(OutDir)$(ProjectName)CHECKED.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../Lib/vc15win64\ - ./x64/LowLevelCloth/profile\ - .lib - $(ProjectName)PROFILE - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include;./../../../Include/common;./../../Common/src;./../../LowLevelCloth/include;./../../LowLevelCloth/src;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=PROFILE;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /INCREMENTAL:NO - %(AdditionalDependencies) - $(OutDir)$(ProjectName)PROFILE.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../Lib/vc15win64\ - ./x64/LowLevelCloth/release\ - .lib - $(ProjectName) - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include;./../../../Include/common;./../../Common/src;./../../LowLevelCloth/include;./../../LowLevelCloth/src;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /INCREMENTAL:NO - %(AdditionalDependencies) - $(OutDir)$(ProjectName).lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - - cl.exe /c /Zi /Ox /MT /arch:AVX /Fd"$(TargetDir)\$(TargetName).pdb" /Fo./x64/LowLevelCloth/debug/avx/SwSolveConstraints.obj ..\..\LowLevelCloth\src\avx\SwSolveConstraints.cpp - Building %(Identity) - ./x64/LowLevelCloth/debug/avx/SwSolveConstraints.obj; - cl.exe /c /Zi /Ox /MT /arch:AVX /Fd"$(TargetDir)\$(TargetName).pdb" /Fo./x64/LowLevelCloth/checked/avx/SwSolveConstraints.obj ..\..\LowLevelCloth\src\avx\SwSolveConstraints.cpp - Building %(Identity) - ./x64/LowLevelCloth/checked/avx/SwSolveConstraints.obj; - cl.exe /c /Zi /Ox /MT /arch:AVX /Fd"$(TargetDir)\$(TargetName).pdb" /Fo./x64/LowLevelCloth/profile/avx/SwSolveConstraints.obj ..\..\LowLevelCloth\src\avx\SwSolveConstraints.cpp - Building %(Identity) - ./x64/LowLevelCloth/profile/avx/SwSolveConstraints.obj; - cl.exe /c /Zi /Ox /MT /arch:AVX /Fd"$(TargetDir)\$(TargetName).pdb" /Fo./x64/LowLevelCloth/release/avx/SwSolveConstraints.obj ..\..\LowLevelCloth\src\avx\SwSolveConstraints.cpp - Building %(Identity) - ./x64/LowLevelCloth/release/avx/SwSolveConstraints.obj; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + debug + x64 + + + checked + x64 + + + profile + x64 + + + release + x64 + + + + {24546E40-3140-20F4-C5AC-E4001B9880B8} + LowLevelCloth + + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + + + + + + + + + + + + + + + + ./../../../Lib/vc15win64\ + ./x64/LowLevelCloth/debug\ + .lib + $(ProjectName)DEBUG + AllRules.ruleset + + + + + + false + false + Fast + UninitializedLocalUsageCheck + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /Zi /d2Zi+ + Disabled + ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include;./../../../Include/common;./../../Common/src;./../../LowLevelCloth/include;./../../LowLevelCloth/src;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=DEBUG;%(PreprocessorDefinitions) + false + Level4 + MultiThreadedDebug + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + %(AdditionalDependencies) + $(OutDir)$(ProjectName)DEBUG.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../Lib/vc15win64\ + ./x64/LowLevelCloth/checked\ + .lib + $(ProjectName)CHECKED + AllRules.ruleset + + + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include;./../../../Include/common;./../../Common/src;./../../LowLevelCloth/include;./../../LowLevelCloth/src;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=CHECKED;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + %(AdditionalDependencies) + $(OutDir)$(ProjectName)CHECKED.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../Lib/vc15win64\ + ./x64/LowLevelCloth/profile\ + .lib + $(ProjectName)PROFILE + AllRules.ruleset + + + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include;./../../../Include/common;./../../Common/src;./../../LowLevelCloth/include;./../../LowLevelCloth/src;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=PROFILE;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /INCREMENTAL:NO + %(AdditionalDependencies) + $(OutDir)$(ProjectName)PROFILE.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../Lib/vc15win64\ + ./x64/LowLevelCloth/release\ + .lib + $(ProjectName) + AllRules.ruleset + + + + + false + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include;./../../../Include/common;./../../Common/src;./../../LowLevelCloth/include;./../../LowLevelCloth/src;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /INCREMENTAL:NO + %(AdditionalDependencies) + $(OutDir)$(ProjectName).lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + + cl.exe /c /Zi /Ox /MT /arch:AVX /Fd"$(TargetDir)\$(TargetName).pdb" /Fo./x64/LowLevelCloth/debug/avx/SwSolveConstraints.obj ..\..\LowLevelCloth\src\avx\SwSolveConstraints.cpp + Building %(Identity) + ./x64/LowLevelCloth/debug/avx/SwSolveConstraints.obj; + cl.exe /c /Zi /Ox /MT /arch:AVX /Fd"$(TargetDir)\$(TargetName).pdb" /Fo./x64/LowLevelCloth/checked/avx/SwSolveConstraints.obj ..\..\LowLevelCloth\src\avx\SwSolveConstraints.cpp + Building %(Identity) + ./x64/LowLevelCloth/checked/avx/SwSolveConstraints.obj; + cl.exe /c /Zi /Ox /MT /arch:AVX /Fd"$(TargetDir)\$(TargetName).pdb" /Fo./x64/LowLevelCloth/profile/avx/SwSolveConstraints.obj ..\..\LowLevelCloth\src\avx\SwSolveConstraints.cpp + Building %(Identity) + ./x64/LowLevelCloth/profile/avx/SwSolveConstraints.obj; + cl.exe /c /Zi /Ox /MT /arch:AVX /Fd"$(TargetDir)\$(TargetName).pdb" /Fo./x64/LowLevelCloth/release/avx/SwSolveConstraints.obj ..\..\LowLevelCloth\src\avx\SwSolveConstraints.cpp + Building %(Identity) + ./x64/LowLevelCloth/release/avx/SwSolveConstraints.obj; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/PhysX_3.4/Source/compiler/vc15win64/LowLevelDynamics.vcxproj b/PhysX_3.4/Source/compiler/vc15win64/LowLevelDynamics.vcxproj index f3683b8a1..f39fedd35 100644 --- a/PhysX_3.4/Source/compiler/vc15win64/LowLevelDynamics.vcxproj +++ b/PhysX_3.4/Source/compiler/vc15win64/LowLevelDynamics.vcxproj @@ -1,358 +1,366 @@ - - - debug - x64 - - - checked - x64 - - - profile - x64 - - - release - x64 - - - - {627F8A5F-9D82-F9B8-AA0E-05A2FA6C025E} - LowLevelDynamics - - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - - - - - - - - - - - - - - - - ./../../../Lib/vc15win64\ - ./x64/LowLevelDynamics/debug\ - .lib - $(ProjectName)DEBUG - AllRules.ruleset - - - - - - true - false - Fast - UninitializedLocalUsageCheck - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /Zi /d2Zi+ - Disabled - ./../../../../Externals/nvToolsExt/1/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include;./../../../Include/GeomUtils;./../../Common/src;./../../Common/src/windows;./../../PhysXProfile/src;./../../PhysXProfile/include;./../../GeomUtils/src/contact;./../../LowLevel/API/include;./../../LowLevel/common/include;./../../LowLevel/common/include/pipeline;./../../LowLevel/common/include/pipeline/windows;./../../LowLevel/common/include/math;./../../LowLevel/common/include/utils;./../../LowLevel/software/include;./../../LowLevel/software/include/windows;./../../LowLevelDynamics/include;./../../LowLevelDynamics/src;./../../LowLevelDynamics/include/windows;./../../PhysXGpu/include;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=DEBUG;%(PreprocessorDefinitions) - false - Level4 - MultiThreadedDebug - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName)DEBUG.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../Lib/vc15win64\ - ./x64/LowLevelDynamics/checked\ - .lib - $(ProjectName)CHECKED - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../../../Externals/nvToolsExt/1/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include;./../../../Include/GeomUtils;./../../Common/src;./../../Common/src/windows;./../../PhysXProfile/src;./../../PhysXProfile/include;./../../GeomUtils/src/contact;./../../LowLevel/API/include;./../../LowLevel/common/include;./../../LowLevel/common/include/pipeline;./../../LowLevel/common/include/pipeline/windows;./../../LowLevel/common/include/math;./../../LowLevel/common/include/utils;./../../LowLevel/software/include;./../../LowLevel/software/include/windows;./../../LowLevelDynamics/include;./../../LowLevelDynamics/src;./../../LowLevelDynamics/include/windows;./../../PhysXGpu/include;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=CHECKED;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName)CHECKED.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../Lib/vc15win64\ - ./x64/LowLevelDynamics/profile\ - .lib - $(ProjectName)PROFILE - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../../../Externals/nvToolsExt/1/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include;./../../../Include/GeomUtils;./../../Common/src;./../../Common/src/windows;./../../PhysXProfile/src;./../../PhysXProfile/include;./../../GeomUtils/src/contact;./../../LowLevel/API/include;./../../LowLevel/common/include;./../../LowLevel/common/include/pipeline;./../../LowLevel/common/include/pipeline/windows;./../../LowLevel/common/include/math;./../../LowLevel/common/include/utils;./../../LowLevel/software/include;./../../LowLevel/software/include/windows;./../../LowLevelDynamics/include;./../../LowLevelDynamics/src;./../../LowLevelDynamics/include/windows;./../../PhysXGpu/include;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=PROFILE;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /INCREMENTAL:NO - ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName)PROFILE.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../Lib/vc15win64\ - ./x64/LowLevelDynamics/release\ - .lib - $(ProjectName) - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../../../Externals/nvToolsExt/1/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include;./../../../Include/GeomUtils;./../../Common/src;./../../Common/src/windows;./../../PhysXProfile/src;./../../PhysXProfile/include;./../../GeomUtils/src/contact;./../../LowLevel/API/include;./../../LowLevel/common/include;./../../LowLevel/common/include/pipeline;./../../LowLevel/common/include/pipeline/windows;./../../LowLevel/common/include/math;./../../LowLevel/common/include/utils;./../../LowLevel/software/include;./../../LowLevel/software/include/windows;./../../LowLevelDynamics/include;./../../LowLevelDynamics/src;./../../LowLevelDynamics/include/windows;./../../PhysXGpu/include;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /INCREMENTAL:NO - ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + debug + x64 + + + checked + x64 + + + profile + x64 + + + release + x64 + + + + {627F8A5F-9D82-F9B8-AA0E-05A2FA6C025E} + LowLevelDynamics + + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + + + + + + + + + + + + + + + + ./../../../Lib/vc15win64\ + ./x64/LowLevelDynamics/debug\ + .lib + $(ProjectName)DEBUG + AllRules.ruleset + + + + + + false + false + Fast + UninitializedLocalUsageCheck + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /Zi /d2Zi+ + Disabled + ./../../../../Externals/nvToolsExt/1/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include;./../../../Include/GeomUtils;./../../Common/src;./../../Common/src/windows;./../../PhysXProfile/src;./../../PhysXProfile/include;./../../GeomUtils/src/contact;./../../LowLevel/API/include;./../../LowLevel/common/include;./../../LowLevel/common/include/pipeline;./../../LowLevel/common/include/pipeline/windows;./../../LowLevel/common/include/math;./../../LowLevel/common/include/utils;./../../LowLevel/software/include;./../../LowLevel/software/include/windows;./../../LowLevelDynamics/include;./../../LowLevelDynamics/src;./../../LowLevelDynamics/include/windows;./../../PhysXGpu/include;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=DEBUG;%(PreprocessorDefinitions) + false + Level4 + MultiThreadedDebug + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName)DEBUG.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../Lib/vc15win64\ + ./x64/LowLevelDynamics/checked\ + .lib + $(ProjectName)CHECKED + AllRules.ruleset + + + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../../../Externals/nvToolsExt/1/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include;./../../../Include/GeomUtils;./../../Common/src;./../../Common/src/windows;./../../PhysXProfile/src;./../../PhysXProfile/include;./../../GeomUtils/src/contact;./../../LowLevel/API/include;./../../LowLevel/common/include;./../../LowLevel/common/include/pipeline;./../../LowLevel/common/include/pipeline/windows;./../../LowLevel/common/include/math;./../../LowLevel/common/include/utils;./../../LowLevel/software/include;./../../LowLevel/software/include/windows;./../../LowLevelDynamics/include;./../../LowLevelDynamics/src;./../../LowLevelDynamics/include/windows;./../../PhysXGpu/include;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=CHECKED;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName)CHECKED.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../Lib/vc15win64\ + ./x64/LowLevelDynamics/profile\ + .lib + $(ProjectName)PROFILE + AllRules.ruleset + + + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../../../Externals/nvToolsExt/1/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include;./../../../Include/GeomUtils;./../../Common/src;./../../Common/src/windows;./../../PhysXProfile/src;./../../PhysXProfile/include;./../../GeomUtils/src/contact;./../../LowLevel/API/include;./../../LowLevel/common/include;./../../LowLevel/common/include/pipeline;./../../LowLevel/common/include/pipeline/windows;./../../LowLevel/common/include/math;./../../LowLevel/common/include/utils;./../../LowLevel/software/include;./../../LowLevel/software/include/windows;./../../LowLevelDynamics/include;./../../LowLevelDynamics/src;./../../LowLevelDynamics/include/windows;./../../PhysXGpu/include;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=PROFILE;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /INCREMENTAL:NO + ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName)PROFILE.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../Lib/vc15win64\ + ./x64/LowLevelDynamics/release\ + .lib + $(ProjectName) + AllRules.ruleset + + + + + false + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../../../Externals/nvToolsExt/1/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include;./../../../Include/GeomUtils;./../../Common/src;./../../Common/src/windows;./../../PhysXProfile/src;./../../PhysXProfile/include;./../../GeomUtils/src/contact;./../../LowLevel/API/include;./../../LowLevel/common/include;./../../LowLevel/common/include/pipeline;./../../LowLevel/common/include/pipeline/windows;./../../LowLevel/common/include/math;./../../LowLevel/common/include/utils;./../../LowLevel/software/include;./../../LowLevel/software/include/windows;./../../LowLevelDynamics/include;./../../LowLevelDynamics/src;./../../LowLevelDynamics/include/windows;./../../PhysXGpu/include;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /INCREMENTAL:NO + ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName).lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/PhysX_3.4/Source/compiler/vc15win64/LowLevelParticles.vcxproj b/PhysX_3.4/Source/compiler/vc15win64/LowLevelParticles.vcxproj index c8e1671a9..d7194aad9 100644 --- a/PhysX_3.4/Source/compiler/vc15win64/LowLevelParticles.vcxproj +++ b/PhysX_3.4/Source/compiler/vc15win64/LowLevelParticles.vcxproj @@ -1,326 +1,334 @@ - - - debug - x64 - - - checked - x64 - - - profile - x64 - - - release - x64 - - - - {D18EB5F3-84D9-FD36-27C0-555ADB086FD3} - LowLevelParticles - - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - - - - - - - - - - - - - - - - ./../../../Lib/vc15win64\ - ./x64/LowLevelParticles/debug\ - .lib - $(ProjectName)DEBUG - AllRules.ruleset - - - - - - true - false - Fast - UninitializedLocalUsageCheck - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /Zi /d2Zi+ - Disabled - ./../../PhysXGpu/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../Common/src;./../../LowLevelParticles/include;./../../LowLevelParticles/src;./../../LowLevel/API/include;./../../LowLevel/common/include/utils;./../../GeomUtils/src;./../../GeomUtils/src/convex;./../../GeomUtils/src/hf;./../../GeomUtils/src/mesh;./../../GeomUtils/headers;./../../../../Externals/nvToolsExt/1/include;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=DEBUG;%(PreprocessorDefinitions) - false - Level4 - MultiThreadedDebug - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName)DEBUG.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../Lib/vc15win64\ - ./x64/LowLevelParticles/checked\ - .lib - $(ProjectName)CHECKED - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../PhysXGpu/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../Common/src;./../../LowLevelParticles/include;./../../LowLevelParticles/src;./../../LowLevel/API/include;./../../LowLevel/common/include/utils;./../../GeomUtils/src;./../../GeomUtils/src/convex;./../../GeomUtils/src/hf;./../../GeomUtils/src/mesh;./../../GeomUtils/headers;./../../../../Externals/nvToolsExt/1/include;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=CHECKED;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName)CHECKED.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../Lib/vc15win64\ - ./x64/LowLevelParticles/profile\ - .lib - $(ProjectName)PROFILE - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../PhysXGpu/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../Common/src;./../../LowLevelParticles/include;./../../LowLevelParticles/src;./../../LowLevel/API/include;./../../LowLevel/common/include/utils;./../../GeomUtils/src;./../../GeomUtils/src/convex;./../../GeomUtils/src/hf;./../../GeomUtils/src/mesh;./../../GeomUtils/headers;./../../../../Externals/nvToolsExt/1/include;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=PROFILE;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /INCREMENTAL:NO - ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName)PROFILE.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../Lib/vc15win64\ - ./x64/LowLevelParticles/release\ - .lib - $(ProjectName) - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../PhysXGpu/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../Common/src;./../../LowLevelParticles/include;./../../LowLevelParticles/src;./../../LowLevel/API/include;./../../LowLevel/common/include/utils;./../../GeomUtils/src;./../../GeomUtils/src/convex;./../../GeomUtils/src/hf;./../../GeomUtils/src/mesh;./../../GeomUtils/headers;./../../../../Externals/nvToolsExt/1/include;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /INCREMENTAL:NO - ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) - $(OutDir)$(ProjectName).lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + debug + x64 + + + checked + x64 + + + profile + x64 + + + release + x64 + + + + {D18EB5F3-84D9-FD36-27C0-555ADB086FD3} + LowLevelParticles + + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + + + + + + + + + + + + + + + + ./../../../Lib/vc15win64\ + ./x64/LowLevelParticles/debug\ + .lib + $(ProjectName)DEBUG + AllRules.ruleset + + + + + + false + false + Fast + UninitializedLocalUsageCheck + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /Zi /d2Zi+ + Disabled + ./../../PhysXGpu/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../Common/src;./../../LowLevelParticles/include;./../../LowLevelParticles/src;./../../LowLevel/API/include;./../../LowLevel/common/include/utils;./../../GeomUtils/src;./../../GeomUtils/src/convex;./../../GeomUtils/src/hf;./../../GeomUtils/src/mesh;./../../GeomUtils/headers;./../../../../Externals/nvToolsExt/1/include;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=DEBUG;%(PreprocessorDefinitions) + false + Level4 + MultiThreadedDebug + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName)DEBUG.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../Lib/vc15win64\ + ./x64/LowLevelParticles/checked\ + .lib + $(ProjectName)CHECKED + AllRules.ruleset + + + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../PhysXGpu/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../Common/src;./../../LowLevelParticles/include;./../../LowLevelParticles/src;./../../LowLevel/API/include;./../../LowLevel/common/include/utils;./../../GeomUtils/src;./../../GeomUtils/src/convex;./../../GeomUtils/src/hf;./../../GeomUtils/src/mesh;./../../GeomUtils/headers;./../../../../Externals/nvToolsExt/1/include;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=CHECKED;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName)CHECKED.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../Lib/vc15win64\ + ./x64/LowLevelParticles/profile\ + .lib + $(ProjectName)PROFILE + AllRules.ruleset + + + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../PhysXGpu/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../Common/src;./../../LowLevelParticles/include;./../../LowLevelParticles/src;./../../LowLevel/API/include;./../../LowLevel/common/include/utils;./../../GeomUtils/src;./../../GeomUtils/src/convex;./../../GeomUtils/src/hf;./../../GeomUtils/src/mesh;./../../GeomUtils/headers;./../../../../Externals/nvToolsExt/1/include;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=PROFILE;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /INCREMENTAL:NO + ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName)PROFILE.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../Lib/vc15win64\ + ./x64/LowLevelParticles/release\ + .lib + $(ProjectName) + AllRules.ruleset + + + + + false + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../PhysXGpu/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../Common/src;./../../LowLevelParticles/include;./../../LowLevelParticles/src;./../../LowLevel/API/include;./../../LowLevel/common/include/utils;./../../GeomUtils/src;./../../GeomUtils/src/convex;./../../GeomUtils/src/hf;./../../GeomUtils/src/mesh;./../../GeomUtils/headers;./../../../../Externals/nvToolsExt/1/include;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /INCREMENTAL:NO + ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) + $(OutDir)$(ProjectName).lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/PhysX_3.4/Source/compiler/vc15win64/PhysX.vcxproj b/PhysX_3.4/Source/compiler/vc15win64/PhysX.vcxproj index 7a969cc79..d6d915962 100644 --- a/PhysX_3.4/Source/compiler/vc15win64/PhysX.vcxproj +++ b/PhysX_3.4/Source/compiler/vc15win64/PhysX.vcxproj @@ -1,695 +1,703 @@ - - - debug - x64 - - - checked - x64 - - - profile - x64 - - - release - x64 - - - - {FC0C1E74-2BE0-A8BC-4F0C-82D0F2EAB9A4} - PhysX - - - - DynamicLibrary - v141 - - - DynamicLibrary - v141 - - - DynamicLibrary - v141 - - - DynamicLibrary - v141 - - - - - - - - - - - - - - - - - - ./../../../bin/vc15win64\ - ./x64/PhysX/debug\ - .dll - PhysX3DEBUG_x64 - AllRules.ruleset - - - true - - - - true - false - Fast - UninitializedLocalUsageCheck - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /Zi /d2Zi+ - Disabled - ./../../../Include/gpu;./../../PhysXGpu/include;./../../PhysX/src/device;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../../Externals/nvToolsExt/1/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/particles;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../LowLevel/API/include;./../../LowLevel/software/include;./../../LowLevel/common/include/pipeline;./../../LowLevelAABB/include;./../../LowLevelDynamics/include;./../../LowLevelDynamics/src;./../../LowLevelParticles/include;./../../PhysX/src;./../../PhysX/src/buffering;./../../PhysX/src/particles;./../../PhysX/src/cloth;./../../SimulationController/include;./../../SimulationController/src;./../../SimulationController/src/particles;./../../PhysXCooking/src;./../../PhysXCooking/src/mesh;./../../PhysXCooking/src/convex;./../../SceneQuery/include;./../../PhysXMetaData/core/include;%(AdditionalIncludeDirectories) - PX_PHYSX_CORE_EXPORTS;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=DEBUG;%(PreprocessorDefinitions) - false - Level4 - MultiThreadedDebug - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /MAP /MACHINE:x64 /DELAYLOAD:nvcuda.dll /DELAYLOAD:PxFoundationDEBUG_x64.dll /DELAYLOAD:PxPvdSDKDEBUG_x64.dll /DELAYLOAD:PhysX3CommonDEBUG_x64.dll /DEBUG - ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) - $(OutDir)PhysX3DEBUG_x64.dll - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - Console - ./../../../Lib/vc15win64/$(TargetName).lib - true - MachineX64 - - - - - - - - ./../../../bin/vc15win64\ - ./x64/PhysX/checked\ - .dll - PhysX3CHECKED_x64 - AllRules.ruleset - - - true - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../../Include/gpu;./../../PhysXGpu/include;./../../PhysX/src/device;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../../Externals/nvToolsExt/1/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/particles;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../LowLevel/API/include;./../../LowLevel/software/include;./../../LowLevel/common/include/pipeline;./../../LowLevelAABB/include;./../../LowLevelDynamics/include;./../../LowLevelDynamics/src;./../../LowLevelParticles/include;./../../PhysX/src;./../../PhysX/src/buffering;./../../PhysX/src/particles;./../../PhysX/src/cloth;./../../SimulationController/include;./../../SimulationController/src;./../../SimulationController/src/particles;./../../PhysXCooking/src;./../../PhysXCooking/src/mesh;./../../PhysXCooking/src/convex;./../../SceneQuery/include;./../../PhysXMetaData/core/include;%(AdditionalIncludeDirectories) - PX_PHYSX_CORE_EXPORTS;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=CHECKED;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /MAP /MACHINE:x64 /DELAYLOAD:nvcuda.dll /DELAYLOAD:PxFoundationCHECKED_x64.dll /DELAYLOAD:PxPvdSDKCHECKED_x64.dll /DELAYLOAD:PhysX3CommonCHECKED_x64.dll - ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) - $(OutDir)PhysX3CHECKED_x64.dll - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - Console - ./../../../Lib/vc15win64/$(TargetName).lib - true - MachineX64 - - - - - - - - ./../../../bin/vc15win64\ - ./x64/PhysX/profile\ - .dll - PhysX3PROFILE_x64 - AllRules.ruleset - - - true - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../../Include/gpu;./../../PhysXGpu/include;./../../PhysX/src/device;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../../Externals/nvToolsExt/1/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/particles;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../LowLevel/API/include;./../../LowLevel/software/include;./../../LowLevel/common/include/pipeline;./../../LowLevelAABB/include;./../../LowLevelDynamics/include;./../../LowLevelDynamics/src;./../../LowLevelParticles/include;./../../PhysX/src;./../../PhysX/src/buffering;./../../PhysX/src/particles;./../../PhysX/src/cloth;./../../SimulationController/include;./../../SimulationController/src;./../../SimulationController/src/particles;./../../PhysXCooking/src;./../../PhysXCooking/src/mesh;./../../PhysXCooking/src/convex;./../../SceneQuery/include;./../../PhysXMetaData/core/include;%(AdditionalIncludeDirectories) - PX_PHYSX_CORE_EXPORTS;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=PROFILE;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /MAP /MACHINE:x64 /DELAYLOAD:nvcuda.dll /DELAYLOAD:PxFoundationPROFILE_x64.dll /DELAYLOAD:PxPvdSDKPROFILE_x64.dll /DELAYLOAD:PhysX3CommonPROFILE_x64.dll /INCREMENTAL:NO /DEBUG - ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) - $(OutDir)PhysX3PROFILE_x64.dll - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - Console - ./../../../Lib/vc15win64/$(TargetName).lib - true - MachineX64 - - - - - - - - ./../../../bin/vc15win64\ - ./x64/PhysX/release\ - .dll - PhysX3_x64 - AllRules.ruleset - - - true - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../../Include/gpu;./../../PhysXGpu/include;./../../PhysX/src/device;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../../Externals/nvToolsExt/1/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/particles;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../LowLevel/API/include;./../../LowLevel/software/include;./../../LowLevel/common/include/pipeline;./../../LowLevelAABB/include;./../../LowLevelDynamics/include;./../../LowLevelDynamics/src;./../../LowLevelParticles/include;./../../PhysX/src;./../../PhysX/src/buffering;./../../PhysX/src/particles;./../../PhysX/src/cloth;./../../SimulationController/include;./../../SimulationController/src;./../../SimulationController/src/particles;./../../PhysXCooking/src;./../../PhysXCooking/src/mesh;./../../PhysXCooking/src/convex;./../../SceneQuery/include;./../../PhysXMetaData/core/include;%(AdditionalIncludeDirectories) - PX_PHYSX_CORE_EXPORTS;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /MAP /MACHINE:x64 /DELAYLOAD:nvcuda.dll /DELAYLOAD:PxFoundation_x64.dll /DELAYLOAD:PxPvdSDK_x64.dll /DELAYLOAD:PhysX3Common_x64.dll /INCREMENTAL:NO - ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) - $(OutDir)PhysX3_x64.dll - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - Console - ./../../../Lib/vc15win64/$(TargetName).lib - true - MachineX64 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - false - - - - - false - - - - - false - - - - - false - - - - - false - - - - - false - - - - - false - - - - - false - - - - - false - - - - - false - - - - - false - - - - - + + + debug + x64 + + + checked + x64 + + + profile + x64 + + + release + x64 + + + + {FC0C1E74-2BE0-A8BC-4F0C-82D0F2EAB9A4} + PhysX + + + + DynamicLibrary + v142 + + + DynamicLibrary + v142 + + + DynamicLibrary + v142 + + + DynamicLibrary + v142 + + + + + + + + + + + + + + + + + + ./../../../bin/vc15win64\ + ./x64/PhysX/debug\ + .dll + PhysX3DEBUG_x64 + AllRules.ruleset + + + true + + + + false + false + Fast + UninitializedLocalUsageCheck + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /Zi /d2Zi+ + Disabled + ./../../../Include/gpu;./../../PhysXGpu/include;./../../PhysX/src/device;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../../Externals/nvToolsExt/1/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/particles;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../LowLevel/API/include;./../../LowLevel/software/include;./../../LowLevel/common/include/pipeline;./../../LowLevelAABB/include;./../../LowLevelDynamics/include;./../../LowLevelDynamics/src;./../../LowLevelParticles/include;./../../PhysX/src;./../../PhysX/src/buffering;./../../PhysX/src/particles;./../../PhysX/src/cloth;./../../SimulationController/include;./../../SimulationController/src;./../../SimulationController/src/particles;./../../PhysXCooking/src;./../../PhysXCooking/src/mesh;./../../PhysXCooking/src/convex;./../../SceneQuery/include;./../../PhysXMetaData/core/include;%(AdditionalIncludeDirectories) + PX_PHYSX_CORE_EXPORTS;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=DEBUG;%(PreprocessorDefinitions) + false + Level4 + MultiThreadedDebug + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /MAP /MACHINE:x64 /DELAYLOAD:nvcuda.dll /DELAYLOAD:PxFoundationDEBUG_x64.dll /DELAYLOAD:PxPvdSDKDEBUG_x64.dll /DELAYLOAD:PhysX3CommonDEBUG_x64.dll /DEBUG + ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) + $(OutDir)PhysX3DEBUG_x64.dll + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + Console + ./../../../Lib/vc15win64/$(TargetName).lib + true + MachineX64 + + + + + + + + ./../../../bin/vc15win64\ + ./x64/PhysX/checked\ + .dll + PhysX3CHECKED_x64 + AllRules.ruleset + + + true + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../../Include/gpu;./../../PhysXGpu/include;./../../PhysX/src/device;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../../Externals/nvToolsExt/1/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/particles;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../LowLevel/API/include;./../../LowLevel/software/include;./../../LowLevel/common/include/pipeline;./../../LowLevelAABB/include;./../../LowLevelDynamics/include;./../../LowLevelDynamics/src;./../../LowLevelParticles/include;./../../PhysX/src;./../../PhysX/src/buffering;./../../PhysX/src/particles;./../../PhysX/src/cloth;./../../SimulationController/include;./../../SimulationController/src;./../../SimulationController/src/particles;./../../PhysXCooking/src;./../../PhysXCooking/src/mesh;./../../PhysXCooking/src/convex;./../../SceneQuery/include;./../../PhysXMetaData/core/include;%(AdditionalIncludeDirectories) + PX_PHYSX_CORE_EXPORTS;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=CHECKED;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /MAP /MACHINE:x64 /DELAYLOAD:nvcuda.dll /DELAYLOAD:PxFoundationCHECKED_x64.dll /DELAYLOAD:PxPvdSDKCHECKED_x64.dll /DELAYLOAD:PhysX3CommonCHECKED_x64.dll + ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) + $(OutDir)PhysX3CHECKED_x64.dll + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + Console + ./../../../Lib/vc15win64/$(TargetName).lib + true + MachineX64 + + + + + + + + ./../../../bin/vc15win64\ + ./x64/PhysX/profile\ + .dll + PhysX3PROFILE_x64 + AllRules.ruleset + + + true + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../../Include/gpu;./../../PhysXGpu/include;./../../PhysX/src/device;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../../Externals/nvToolsExt/1/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/particles;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../LowLevel/API/include;./../../LowLevel/software/include;./../../LowLevel/common/include/pipeline;./../../LowLevelAABB/include;./../../LowLevelDynamics/include;./../../LowLevelDynamics/src;./../../LowLevelParticles/include;./../../PhysX/src;./../../PhysX/src/buffering;./../../PhysX/src/particles;./../../PhysX/src/cloth;./../../SimulationController/include;./../../SimulationController/src;./../../SimulationController/src/particles;./../../PhysXCooking/src;./../../PhysXCooking/src/mesh;./../../PhysXCooking/src/convex;./../../SceneQuery/include;./../../PhysXMetaData/core/include;%(AdditionalIncludeDirectories) + PX_PHYSX_CORE_EXPORTS;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=PROFILE;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /MAP /MACHINE:x64 /DELAYLOAD:nvcuda.dll /DELAYLOAD:PxFoundationPROFILE_x64.dll /DELAYLOAD:PxPvdSDKPROFILE_x64.dll /DELAYLOAD:PhysX3CommonPROFILE_x64.dll /INCREMENTAL:NO /DEBUG + ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) + $(OutDir)PhysX3PROFILE_x64.dll + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + Console + ./../../../Lib/vc15win64/$(TargetName).lib + true + MachineX64 + + + + + + + + ./../../../bin/vc15win64\ + ./x64/PhysX/release\ + .dll + PhysX3_x64 + AllRules.ruleset + + + true + + + false + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../../Include/gpu;./../../PhysXGpu/include;./../../PhysX/src/device;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../../Externals/nvToolsExt/1/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/particles;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../LowLevel/API/include;./../../LowLevel/software/include;./../../LowLevel/common/include/pipeline;./../../LowLevelAABB/include;./../../LowLevelDynamics/include;./../../LowLevelDynamics/src;./../../LowLevelParticles/include;./../../PhysX/src;./../../PhysX/src/buffering;./../../PhysX/src/particles;./../../PhysX/src/cloth;./../../SimulationController/include;./../../SimulationController/src;./../../SimulationController/src/particles;./../../PhysXCooking/src;./../../PhysXCooking/src/mesh;./../../PhysXCooking/src/convex;./../../SceneQuery/include;./../../PhysXMetaData/core/include;%(AdditionalIncludeDirectories) + PX_PHYSX_CORE_EXPORTS;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /MAP /MACHINE:x64 /DELAYLOAD:nvcuda.dll /DELAYLOAD:PxFoundation_x64.dll /DELAYLOAD:PxPvdSDK_x64.dll /DELAYLOAD:PhysX3Common_x64.dll /INCREMENTAL:NO + ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) + $(OutDir)PhysX3_x64.dll + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + Console + ./../../../Lib/vc15win64/$(TargetName).lib + true + MachineX64 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + false + + + + + false + + + + + false + + + + + false + + + + + false + + + + + false + + + + + false + + + + + false + + + + + false + + + + + false + + + + + false + + + + + + \ No newline at end of file diff --git a/PhysX_3.4/Source/compiler/vc15win64/PhysXCharacterKinematic.vcxproj b/PhysX_3.4/Source/compiler/vc15win64/PhysXCharacterKinematic.vcxproj index 4b1714d11..8be83ed63 100644 --- a/PhysX_3.4/Source/compiler/vc15win64/PhysXCharacterKinematic.vcxproj +++ b/PhysX_3.4/Source/compiler/vc15win64/PhysXCharacterKinematic.vcxproj @@ -1,313 +1,321 @@ - - - debug - x64 - - - checked - x64 - - - profile - x64 - - - release - x64 - - - - {1E04F7A2-C8F8-3D62-46FE-8762D28CA9A4} - PhysXCharacterKinematic - - - - DynamicLibrary - v141 - - - DynamicLibrary - v141 - - - DynamicLibrary - v141 - - - DynamicLibrary - v141 - - - - - - - - - - - - - - - - - - ./../../../bin/vc15win64\ - ./x64/PhysXCharacterKinematic/debug\ - .dll - PhysX3CharacterKinematicDEBUG_x64 - AllRules.ruleset - - - true - - - - true - false - Fast - UninitializedLocalUsageCheck - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /Zi /d2Zi+ - Disabled - ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/characterkinematic;./../../../Include/common;./../../../Include/geometry;./../../../Include/extensions;./../../../Include;./../../GeomUtils/headers;./../../Common/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;%(AdditionalIncludeDirectories) - PX_PHYSX_CHARACTER_EXPORTS;PX_PHYSX_CORE_EXPORTS;PX_FOUNDATION_DLL=1;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=DEBUG;%(PreprocessorDefinitions) - false - Level4 - MultiThreadedDebug - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /MAP /MACHINE:x64 /DEBUG - %(AdditionalDependencies) - $(OutDir)PhysX3CharacterKinematicDEBUG_x64.dll - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - Console - ./../../../Lib/vc15win64/$(TargetName).lib - true - MachineX64 - - - - - - - - ./../../../bin/vc15win64\ - ./x64/PhysXCharacterKinematic/checked\ - .dll - PhysX3CharacterKinematicCHECKED_x64 - AllRules.ruleset - - - true - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/characterkinematic;./../../../Include/common;./../../../Include/geometry;./../../../Include/extensions;./../../../Include;./../../GeomUtils/headers;./../../Common/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;%(AdditionalIncludeDirectories) - PX_PHYSX_CHARACTER_EXPORTS;PX_PHYSX_CORE_EXPORTS;PX_FOUNDATION_DLL=1;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=CHECKED;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /MAP /MACHINE:x64 - %(AdditionalDependencies) - $(OutDir)PhysX3CharacterKinematicCHECKED_x64.dll - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - Console - ./../../../Lib/vc15win64/$(TargetName).lib - true - MachineX64 - - - - - - - - ./../../../bin/vc15win64\ - ./x64/PhysXCharacterKinematic/profile\ - .dll - PhysX3CharacterKinematicPROFILE_x64 - AllRules.ruleset - - - true - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/characterkinematic;./../../../Include/common;./../../../Include/geometry;./../../../Include/extensions;./../../../Include;./../../GeomUtils/headers;./../../Common/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;%(AdditionalIncludeDirectories) - PX_PHYSX_CHARACTER_EXPORTS;PX_PHYSX_CORE_EXPORTS;PX_FOUNDATION_DLL=1;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=PROFILE;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /MAP /MACHINE:x64 /INCREMENTAL:NO /DEBUG - %(AdditionalDependencies) - $(OutDir)PhysX3CharacterKinematicPROFILE_x64.dll - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - Console - ./../../../Lib/vc15win64/$(TargetName).lib - true - MachineX64 - - - - - - - - ./../../../bin/vc15win64\ - ./x64/PhysXCharacterKinematic/release\ - .dll - PhysX3CharacterKinematic_x64 - AllRules.ruleset - - - true - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/characterkinematic;./../../../Include/common;./../../../Include/geometry;./../../../Include/extensions;./../../../Include;./../../GeomUtils/headers;./../../Common/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;%(AdditionalIncludeDirectories) - PX_PHYSX_CHARACTER_EXPORTS;PX_PHYSX_CORE_EXPORTS;PX_FOUNDATION_DLL=1;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /MAP /MACHINE:x64 /INCREMENTAL:NO - %(AdditionalDependencies) - $(OutDir)PhysX3CharacterKinematic_x64.dll - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - Console - ./../../../Lib/vc15win64/$(TargetName).lib - true - MachineX64 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - false - - - - - false - - - - - false - - - - - + + + debug + x64 + + + checked + x64 + + + profile + x64 + + + release + x64 + + + + {1E04F7A2-C8F8-3D62-46FE-8762D28CA9A4} + PhysXCharacterKinematic + + + + DynamicLibrary + v142 + + + DynamicLibrary + v142 + + + DynamicLibrary + v142 + + + DynamicLibrary + v142 + + + + + + + + + + + + + + + + + + ./../../../bin/vc15win64\ + ./x64/PhysXCharacterKinematic/debug\ + .dll + PhysX3CharacterKinematicDEBUG_x64 + AllRules.ruleset + + + true + + + + false + false + Fast + UninitializedLocalUsageCheck + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /Zi /d2Zi+ + Disabled + ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/characterkinematic;./../../../Include/common;./../../../Include/geometry;./../../../Include/extensions;./../../../Include;./../../GeomUtils/headers;./../../Common/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;%(AdditionalIncludeDirectories) + PX_PHYSX_CHARACTER_EXPORTS;PX_PHYSX_CORE_EXPORTS;PX_FOUNDATION_DLL=1;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=DEBUG;%(PreprocessorDefinitions) + false + Level4 + MultiThreadedDebug + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /MAP /MACHINE:x64 /DEBUG + %(AdditionalDependencies) + $(OutDir)PhysX3CharacterKinematicDEBUG_x64.dll + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + Console + ./../../../Lib/vc15win64/$(TargetName).lib + true + MachineX64 + + + + + + + + ./../../../bin/vc15win64\ + ./x64/PhysXCharacterKinematic/checked\ + .dll + PhysX3CharacterKinematicCHECKED_x64 + AllRules.ruleset + + + true + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/characterkinematic;./../../../Include/common;./../../../Include/geometry;./../../../Include/extensions;./../../../Include;./../../GeomUtils/headers;./../../Common/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;%(AdditionalIncludeDirectories) + PX_PHYSX_CHARACTER_EXPORTS;PX_PHYSX_CORE_EXPORTS;PX_FOUNDATION_DLL=1;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=CHECKED;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /MAP /MACHINE:x64 + %(AdditionalDependencies) + $(OutDir)PhysX3CharacterKinematicCHECKED_x64.dll + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + Console + ./../../../Lib/vc15win64/$(TargetName).lib + true + MachineX64 + + + + + + + + ./../../../bin/vc15win64\ + ./x64/PhysXCharacterKinematic/profile\ + .dll + PhysX3CharacterKinematicPROFILE_x64 + AllRules.ruleset + + + true + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/characterkinematic;./../../../Include/common;./../../../Include/geometry;./../../../Include/extensions;./../../../Include;./../../GeomUtils/headers;./../../Common/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;%(AdditionalIncludeDirectories) + PX_PHYSX_CHARACTER_EXPORTS;PX_PHYSX_CORE_EXPORTS;PX_FOUNDATION_DLL=1;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=PROFILE;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /MAP /MACHINE:x64 /INCREMENTAL:NO /DEBUG + %(AdditionalDependencies) + $(OutDir)PhysX3CharacterKinematicPROFILE_x64.dll + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + Console + ./../../../Lib/vc15win64/$(TargetName).lib + true + MachineX64 + + + + + + + + ./../../../bin/vc15win64\ + ./x64/PhysXCharacterKinematic/release\ + .dll + PhysX3CharacterKinematic_x64 + AllRules.ruleset + + + true + + + false + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/characterkinematic;./../../../Include/common;./../../../Include/geometry;./../../../Include/extensions;./../../../Include;./../../GeomUtils/headers;./../../Common/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;%(AdditionalIncludeDirectories) + PX_PHYSX_CHARACTER_EXPORTS;PX_PHYSX_CORE_EXPORTS;PX_FOUNDATION_DLL=1;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /MAP /MACHINE:x64 /INCREMENTAL:NO + %(AdditionalDependencies) + $(OutDir)PhysX3CharacterKinematic_x64.dll + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + Console + ./../../../Lib/vc15win64/$(TargetName).lib + true + MachineX64 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + false + + + + + false + + + + + false + + + + + + \ No newline at end of file diff --git a/PhysX_3.4/Source/compiler/vc15win64/PhysXCommon.vcxproj b/PhysX_3.4/Source/compiler/vc15win64/PhysXCommon.vcxproj index d8a0b5525..06ef672bf 100644 --- a/PhysX_3.4/Source/compiler/vc15win64/PhysXCommon.vcxproj +++ b/PhysX_3.4/Source/compiler/vc15win64/PhysXCommon.vcxproj @@ -1,969 +1,977 @@ - - - debug - x64 - - - checked - x64 - - - profile - x64 - - - release - x64 - - - - {653CC2CD-99F5-48D8-0E9C-46FA10B26447} - PhysXCommon - - - - DynamicLibrary - v141 - - - DynamicLibrary - v141 - - - DynamicLibrary - v141 - - - DynamicLibrary - v141 - - - - - - - - - - - - - - - - - - ./../../../bin/vc15win64\ - ./x64/PhysXCommon/debug\ - .dll - PhysX3CommonDEBUG_x64 - AllRules.ruleset - - - true - - - - true - false - Fast - UninitializedLocalUsageCheck - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /Zi /d2Zi+ - Disabled - ./../../../../Externals/nvToolsExt/1/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include;./../../Common/src;./../../Common/src/windows;./../../PhysXProfile/include;./../../PhysXProfile/src;./../../PhysXGpu/include;./../../../Include/geometry;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../../Include/GeomUtils;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_FOUNDATION_DLL=1;PX_PHYSX_COMMON_EXPORTS;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=DEBUG;%(PreprocessorDefinitions) - false - Level4 - MultiThreadedDebug - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /MAP /MACHINE:x64 /DEBUG /DELAYLOAD:PxFoundationDEBUG_x64.dll - ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) - $(OutDir)PhysX3CommonDEBUG_x64.dll - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - Console - ./../../../Lib/vc15win64/$(TargetName).lib - true - MachineX64 - - - - - - - - ./../../../bin/vc15win64\ - ./x64/PhysXCommon/checked\ - .dll - PhysX3CommonCHECKED_x64 - AllRules.ruleset - - - true - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../../../Externals/nvToolsExt/1/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include;./../../Common/src;./../../Common/src/windows;./../../PhysXProfile/include;./../../PhysXProfile/src;./../../PhysXGpu/include;./../../../Include/geometry;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../../Include/GeomUtils;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_FOUNDATION_DLL=1;PX_PHYSX_COMMON_EXPORTS;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=CHECKED;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /MAP /MACHINE:x64 /DELAYLOAD:PxFoundationCHECKED_x64.dll - ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) - $(OutDir)PhysX3CommonCHECKED_x64.dll - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - Console - ./../../../Lib/vc15win64/$(TargetName).lib - true - MachineX64 - - - - - - - - ./../../../bin/vc15win64\ - ./x64/PhysXCommon/profile\ - .dll - PhysX3CommonPROFILE_x64 - AllRules.ruleset - - - true - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../../../Externals/nvToolsExt/1/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include;./../../Common/src;./../../Common/src/windows;./../../PhysXProfile/include;./../../PhysXProfile/src;./../../PhysXGpu/include;./../../../Include/geometry;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../../Include/GeomUtils;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_FOUNDATION_DLL=1;PX_PHYSX_COMMON_EXPORTS;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=PROFILE;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /MAP /MACHINE:x64 /INCREMENTAL:NO /DEBUG /DELAYLOAD:PxFoundationPROFILE_x64.dll - ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) - $(OutDir)PhysX3CommonPROFILE_x64.dll - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - Console - ./../../../Lib/vc15win64/$(TargetName).lib - true - MachineX64 - - - - - - - - ./../../../bin/vc15win64\ - ./x64/PhysXCommon/release\ - .dll - PhysX3Common_x64 - AllRules.ruleset - - - true - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../../../Externals/nvToolsExt/1/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include;./../../Common/src;./../../Common/src/windows;./../../PhysXProfile/include;./../../PhysXProfile/src;./../../PhysXGpu/include;./../../../Include/geometry;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../../Include/GeomUtils;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_FOUNDATION_DLL=1;PX_PHYSX_COMMON_EXPORTS;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /MAP /MACHINE:x64 /INCREMENTAL:NO /DELAYLOAD:PxFoundation_x64.dll - ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) - $(OutDir)PhysX3Common_x64.dll - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - Console - ./../../../Lib/vc15win64/$(TargetName).lib - true - MachineX64 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - false - - - - - + + + debug + x64 + + + checked + x64 + + + profile + x64 + + + release + x64 + + + + {653CC2CD-99F5-48D8-0E9C-46FA10B26447} + PhysXCommon + + + + DynamicLibrary + v142 + + + DynamicLibrary + v142 + + + DynamicLibrary + v142 + + + DynamicLibrary + v142 + + + + + + + + + + + + + + + + + + ./../../../bin/vc15win64\ + ./x64/PhysXCommon/debug\ + .dll + PhysX3CommonDEBUG_x64 + AllRules.ruleset + + + true + + + + false + false + Fast + UninitializedLocalUsageCheck + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /Zi /d2Zi+ + Disabled + ./../../../../Externals/nvToolsExt/1/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include;./../../Common/src;./../../Common/src/windows;./../../PhysXProfile/include;./../../PhysXProfile/src;./../../PhysXGpu/include;./../../../Include/geometry;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../../Include/GeomUtils;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_FOUNDATION_DLL=1;PX_PHYSX_COMMON_EXPORTS;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=DEBUG;%(PreprocessorDefinitions) + false + Level4 + MultiThreadedDebug + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /MAP /MACHINE:x64 /DEBUG /DELAYLOAD:PxFoundationDEBUG_x64.dll + ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) + $(OutDir)PhysX3CommonDEBUG_x64.dll + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + Console + ./../../../Lib/vc15win64/$(TargetName).lib + true + MachineX64 + + + + + + + + ./../../../bin/vc15win64\ + ./x64/PhysXCommon/checked\ + .dll + PhysX3CommonCHECKED_x64 + AllRules.ruleset + + + true + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../../../Externals/nvToolsExt/1/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include;./../../Common/src;./../../Common/src/windows;./../../PhysXProfile/include;./../../PhysXProfile/src;./../../PhysXGpu/include;./../../../Include/geometry;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../../Include/GeomUtils;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_FOUNDATION_DLL=1;PX_PHYSX_COMMON_EXPORTS;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=CHECKED;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /MAP /MACHINE:x64 /DELAYLOAD:PxFoundationCHECKED_x64.dll + ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) + $(OutDir)PhysX3CommonCHECKED_x64.dll + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + Console + ./../../../Lib/vc15win64/$(TargetName).lib + true + MachineX64 + + + + + + + + ./../../../bin/vc15win64\ + ./x64/PhysXCommon/profile\ + .dll + PhysX3CommonPROFILE_x64 + AllRules.ruleset + + + true + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../../../Externals/nvToolsExt/1/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include;./../../Common/src;./../../Common/src/windows;./../../PhysXProfile/include;./../../PhysXProfile/src;./../../PhysXGpu/include;./../../../Include/geometry;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../../Include/GeomUtils;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_FOUNDATION_DLL=1;PX_PHYSX_COMMON_EXPORTS;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=PROFILE;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /MAP /MACHINE:x64 /INCREMENTAL:NO /DEBUG /DELAYLOAD:PxFoundationPROFILE_x64.dll + ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) + $(OutDir)PhysX3CommonPROFILE_x64.dll + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + Console + ./../../../Lib/vc15win64/$(TargetName).lib + true + MachineX64 + + + + + + + + ./../../../bin/vc15win64\ + ./x64/PhysXCommon/release\ + .dll + PhysX3Common_x64 + AllRules.ruleset + + + true + + + false + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../../../Externals/nvToolsExt/1/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include;./../../Common/src;./../../Common/src/windows;./../../PhysXProfile/include;./../../PhysXProfile/src;./../../PhysXGpu/include;./../../../Include/geometry;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../../Include/GeomUtils;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_FOUNDATION_DLL=1;PX_PHYSX_COMMON_EXPORTS;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /MAP /MACHINE:x64 /INCREMENTAL:NO /DELAYLOAD:PxFoundation_x64.dll + ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) + $(OutDir)PhysX3Common_x64.dll + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + Console + ./../../../Lib/vc15win64/$(TargetName).lib + true + MachineX64 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + false + + + + + + \ No newline at end of file diff --git a/PhysX_3.4/Source/compiler/vc15win64/PhysXCooking.vcxproj b/PhysX_3.4/Source/compiler/vc15win64/PhysXCooking.vcxproj index 216600295..908408bcf 100644 --- a/PhysX_3.4/Source/compiler/vc15win64/PhysXCooking.vcxproj +++ b/PhysX_3.4/Source/compiler/vc15win64/PhysXCooking.vcxproj @@ -1,355 +1,363 @@ - - - debug - x64 - - - checked - x64 - - - profile - x64 - - - release - x64 - - - - {C6474901-29F9-EF65-44E2-951696161E76} - PhysXCooking - - - - DynamicLibrary - v141 - - - DynamicLibrary - v141 - - - DynamicLibrary - v141 - - - DynamicLibrary - v141 - - - - - - - - - - - - - - - - - - ./../../../bin/vc15win64\ - ./x64/PhysXCooking/debug\ - .dll - PhysX3CookingDEBUG_x64 - AllRules.ruleset - - - true - - - - true - false - Fast - UninitializedLocalUsageCheck - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /Zi /d2Zi+ - Disabled - ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/cloth;./../../../Include/cooking;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../PhysXCooking/src;./../../PhysXCooking/src/mesh;./../../PhysXCooking/src/convex;./../../PhysXExtensions/src;./../../PhysXGpu/include;%(AdditionalIncludeDirectories) - PX_PHYSX_LOADER_EXPORTS;PX_PHYSX_COOKING_EXPORTS;PX_PHYSX_CORE_EXPORTS;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_COOKING;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=DEBUG;%(PreprocessorDefinitions) - false - Level4 - MultiThreadedDebug - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /MAP /MACHINE:x64 /DEBUG /DELAYLOAD:PxFoundationDEBUG_x64.dll /DELAYLOAD:PhysX3CommonDEBUG_x64.dll - %(AdditionalDependencies) - $(OutDir)PhysX3CookingDEBUG_x64.dll - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - Console - ./../../../Lib/vc15win64/$(TargetName).lib - true - MachineX64 - - - - - - - - ./../../../bin/vc15win64\ - ./x64/PhysXCooking/checked\ - .dll - PhysX3CookingCHECKED_x64 - AllRules.ruleset - - - true - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/cloth;./../../../Include/cooking;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../PhysXCooking/src;./../../PhysXCooking/src/mesh;./../../PhysXCooking/src/convex;./../../PhysXExtensions/src;./../../PhysXGpu/include;%(AdditionalIncludeDirectories) - PX_PHYSX_LOADER_EXPORTS;PX_PHYSX_COOKING_EXPORTS;PX_PHYSX_CORE_EXPORTS;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_COOKING;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=CHECKED;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /MAP /MACHINE:x64 /DELAYLOAD:PxFoundationCHECKED_x64.dll /DELAYLOAD:PhysX3CommonCHECKED_x64.dll - %(AdditionalDependencies) - $(OutDir)PhysX3CookingCHECKED_x64.dll - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - Console - ./../../../Lib/vc15win64/$(TargetName).lib - true - MachineX64 - - - - - - - - ./../../../bin/vc15win64\ - ./x64/PhysXCooking/profile\ - .dll - PhysX3CookingPROFILE_x64 - AllRules.ruleset - - - true - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/cloth;./../../../Include/cooking;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../PhysXCooking/src;./../../PhysXCooking/src/mesh;./../../PhysXCooking/src/convex;./../../PhysXExtensions/src;./../../PhysXGpu/include;%(AdditionalIncludeDirectories) - PX_PHYSX_LOADER_EXPORTS;PX_PHYSX_COOKING_EXPORTS;PX_PHYSX_CORE_EXPORTS;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_COOKING;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=PROFILE;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /MAP /MACHINE:x64 /INCREMENTAL:NO /DEBUG /DELAYLOAD:PxFoundationPROFILE_x64.dll /DELAYLOAD:PhysX3CommonPROFILE_x64.dll - %(AdditionalDependencies) - $(OutDir)PhysX3CookingPROFILE_x64.dll - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - Console - ./../../../Lib/vc15win64/$(TargetName).lib - true - MachineX64 - - - - - - - - ./../../../bin/vc15win64\ - ./x64/PhysXCooking/release\ - .dll - PhysX3Cooking_x64 - AllRules.ruleset - - - true - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/cloth;./../../../Include/cooking;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../PhysXCooking/src;./../../PhysXCooking/src/mesh;./../../PhysXCooking/src/convex;./../../PhysXExtensions/src;./../../PhysXGpu/include;%(AdditionalIncludeDirectories) - PX_PHYSX_LOADER_EXPORTS;PX_PHYSX_COOKING_EXPORTS;PX_PHYSX_CORE_EXPORTS;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_COOKING;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /MAP /MACHINE:x64 /INCREMENTAL:NO /DELAYLOAD:PxFoundation_x64.dll /DELAYLOAD:PhysX3Common_x64.dll - %(AdditionalDependencies) - $(OutDir)PhysX3Cooking_x64.dll - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - Console - ./../../../Lib/vc15win64/$(TargetName).lib - true - MachineX64 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - false - - - - - false - - - - - false - - - - - + + + debug + x64 + + + checked + x64 + + + profile + x64 + + + release + x64 + + + + {C6474901-29F9-EF65-44E2-951696161E76} + PhysXCooking + + + + DynamicLibrary + v142 + + + DynamicLibrary + v142 + + + DynamicLibrary + v142 + + + DynamicLibrary + v142 + + + + + + + + + + + + + + + + + + ./../../../bin/vc15win64\ + ./x64/PhysXCooking/debug\ + .dll + PhysX3CookingDEBUG_x64 + AllRules.ruleset + + + true + + + + false + false + Fast + UninitializedLocalUsageCheck + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /Zi /d2Zi+ + Disabled + ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/cloth;./../../../Include/cooking;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../PhysXCooking/src;./../../PhysXCooking/src/mesh;./../../PhysXCooking/src/convex;./../../PhysXExtensions/src;./../../PhysXGpu/include;%(AdditionalIncludeDirectories) + PX_PHYSX_LOADER_EXPORTS;PX_PHYSX_COOKING_EXPORTS;PX_PHYSX_CORE_EXPORTS;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_COOKING;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=DEBUG;%(PreprocessorDefinitions) + false + Level4 + MultiThreadedDebug + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /MAP /MACHINE:x64 /DEBUG /DELAYLOAD:PxFoundationDEBUG_x64.dll /DELAYLOAD:PhysX3CommonDEBUG_x64.dll + %(AdditionalDependencies) + $(OutDir)PhysX3CookingDEBUG_x64.dll + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + Console + ./../../../Lib/vc15win64/$(TargetName).lib + true + MachineX64 + + + + + + + + ./../../../bin/vc15win64\ + ./x64/PhysXCooking/checked\ + .dll + PhysX3CookingCHECKED_x64 + AllRules.ruleset + + + true + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/cloth;./../../../Include/cooking;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../PhysXCooking/src;./../../PhysXCooking/src/mesh;./../../PhysXCooking/src/convex;./../../PhysXExtensions/src;./../../PhysXGpu/include;%(AdditionalIncludeDirectories) + PX_PHYSX_LOADER_EXPORTS;PX_PHYSX_COOKING_EXPORTS;PX_PHYSX_CORE_EXPORTS;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_COOKING;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=CHECKED;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /MAP /MACHINE:x64 /DELAYLOAD:PxFoundationCHECKED_x64.dll /DELAYLOAD:PhysX3CommonCHECKED_x64.dll + %(AdditionalDependencies) + $(OutDir)PhysX3CookingCHECKED_x64.dll + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + Console + ./../../../Lib/vc15win64/$(TargetName).lib + true + MachineX64 + + + + + + + + ./../../../bin/vc15win64\ + ./x64/PhysXCooking/profile\ + .dll + PhysX3CookingPROFILE_x64 + AllRules.ruleset + + + true + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/cloth;./../../../Include/cooking;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../PhysXCooking/src;./../../PhysXCooking/src/mesh;./../../PhysXCooking/src/convex;./../../PhysXExtensions/src;./../../PhysXGpu/include;%(AdditionalIncludeDirectories) + PX_PHYSX_LOADER_EXPORTS;PX_PHYSX_COOKING_EXPORTS;PX_PHYSX_CORE_EXPORTS;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_COOKING;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;PX_PHYSX_DLL_NAME_POSTFIX=PROFILE;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /MAP /MACHINE:x64 /INCREMENTAL:NO /DEBUG /DELAYLOAD:PxFoundationPROFILE_x64.dll /DELAYLOAD:PhysX3CommonPROFILE_x64.dll + %(AdditionalDependencies) + $(OutDir)PhysX3CookingPROFILE_x64.dll + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + Console + ./../../../Lib/vc15win64/$(TargetName).lib + true + MachineX64 + + + + + + + + ./../../../bin/vc15win64\ + ./x64/PhysXCooking/release\ + .dll + PhysX3Cooking_x64 + AllRules.ruleset + + + true + + + false + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/cloth;./../../../Include/cooking;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../PhysXCooking/src;./../../PhysXCooking/src/mesh;./../../PhysXCooking/src/convex;./../../PhysXExtensions/src;./../../PhysXGpu/include;%(AdditionalIncludeDirectories) + PX_PHYSX_LOADER_EXPORTS;PX_PHYSX_COOKING_EXPORTS;PX_PHYSX_CORE_EXPORTS;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_COOKING;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /MAP /MACHINE:x64 /INCREMENTAL:NO /DELAYLOAD:PxFoundation_x64.dll /DELAYLOAD:PhysX3Common_x64.dll + %(AdditionalDependencies) + $(OutDir)PhysX3Cooking_x64.dll + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + Console + ./../../../Lib/vc15win64/$(TargetName).lib + true + MachineX64 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + false + + + + + false + + + + + false + + + + + + \ No newline at end of file diff --git a/PhysX_3.4/Source/compiler/vc15win64/PhysXExtensions.vcxproj b/PhysX_3.4/Source/compiler/vc15win64/PhysXExtensions.vcxproj index 6dab7851b..70086ea70 100644 --- a/PhysX_3.4/Source/compiler/vc15win64/PhysXExtensions.vcxproj +++ b/PhysX_3.4/Source/compiler/vc15win64/PhysXExtensions.vcxproj @@ -1,551 +1,559 @@ - - - debug - x64 - - - checked - x64 - - - profile - x64 - - - release - x64 - - - - {2C6C10D1-F63D-B7F0-8390-AFC3DC10EC90} - PhysXExtensions - - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - - - - - - - - - - - - - - - - ./../../../Lib/vc15win64\ - ./x64/PhysXExtensions/debug\ - .lib - PhysX3ExtensionsDEBUG - AllRules.ruleset - - - - - - true - false - Fast - UninitializedLocalUsageCheck - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /Zi /d2Zi+ - Disabled - ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories) - PX_BUILD_NUMBER=0;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions) - false - Level4 - MultiThreadedDebug - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - %(AdditionalDependencies) - $(OutDir)PhysX3ExtensionsDEBUG.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../Lib/vc15win64\ - ./x64/PhysXExtensions/checked\ - .lib - PhysX3ExtensionsCHECKED - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories) - PX_BUILD_NUMBER=0;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - %(AdditionalDependencies) - $(OutDir)PhysX3ExtensionsCHECKED.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../Lib/vc15win64\ - ./x64/PhysXExtensions/profile\ - .lib - PhysX3ExtensionsPROFILE - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories) - PX_BUILD_NUMBER=0;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /INCREMENTAL:NO - %(AdditionalDependencies) - $(OutDir)PhysX3ExtensionsPROFILE.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../Lib/vc15win64\ - ./x64/PhysXExtensions/release\ - .lib - PhysX3Extensions - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories) - PX_BUILD_NUMBER=0;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /INCREMENTAL:NO - %(AdditionalDependencies) - $(OutDir)PhysX3Extensions.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - false - - - - - + + + debug + x64 + + + checked + x64 + + + profile + x64 + + + release + x64 + + + + {2C6C10D1-F63D-B7F0-8390-AFC3DC10EC90} + PhysXExtensions + + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + + + + + + + + + + + + + + + + ./../../../Lib/vc15win64\ + ./x64/PhysXExtensions/debug\ + .lib + PhysX3ExtensionsDEBUG + AllRules.ruleset + + + + + + false + false + Fast + UninitializedLocalUsageCheck + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /Zi /d2Zi+ + Disabled + ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories) + PX_BUILD_NUMBER=0;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions) + false + Level4 + MultiThreadedDebug + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + %(AdditionalDependencies) + $(OutDir)PhysX3ExtensionsDEBUG.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../Lib/vc15win64\ + ./x64/PhysXExtensions/checked\ + .lib + PhysX3ExtensionsCHECKED + AllRules.ruleset + + + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories) + PX_BUILD_NUMBER=0;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + %(AdditionalDependencies) + $(OutDir)PhysX3ExtensionsCHECKED.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../Lib/vc15win64\ + ./x64/PhysXExtensions/profile\ + .lib + PhysX3ExtensionsPROFILE + AllRules.ruleset + + + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories) + PX_BUILD_NUMBER=0;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /INCREMENTAL:NO + %(AdditionalDependencies) + $(OutDir)PhysX3ExtensionsPROFILE.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../Lib/vc15win64\ + ./x64/PhysXExtensions/release\ + .lib + PhysX3Extensions + AllRules.ruleset + + + + + false + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories) + PX_BUILD_NUMBER=0;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /INCREMENTAL:NO + %(AdditionalDependencies) + $(OutDir)PhysX3Extensions.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + false + + + + + + \ No newline at end of file diff --git a/PhysX_3.4/Source/compiler/vc15win64/PhysXVehicle.vcxproj b/PhysX_3.4/Source/compiler/vc15win64/PhysXVehicle.vcxproj index 91f920acb..562d831d9 100644 --- a/PhysX_3.4/Source/compiler/vc15win64/PhysXVehicle.vcxproj +++ b/PhysX_3.4/Source/compiler/vc15win64/PhysXVehicle.vcxproj @@ -1,310 +1,318 @@ - - - debug - x64 - - - checked - x64 - - - profile - x64 - - - release - x64 - - - - {BC4778D3-142F-31D0-46EC-77203F28C874} - PhysXVehicle - - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - - - - - - - - - - - - - - - - ./../../../Lib/vc15win64\ - ./x64/PhysXVehicle/debug\ - .lib - PhysX3VehicleDEBUG - AllRules.ruleset - - - - - - true - false - Fast - UninitializedLocalUsageCheck - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /Zi /d2Zi+ - Disabled - ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/vehicle;./../../../Include/common;./../../../Include/geometry;./../../../Include/extensions;./../../../Include/cloth;./../../../Include;./../../../Include/pvd;./../../../Include/physxprofilesdk;./../../Common/src;./../../PhysXVehicle/src;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXMetaData/core/include;./../../PhysXVehicle/src/PhysXMetaData/include;./../../PvdSDK/src;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions) - false - Level4 - MultiThreadedDebug - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - %(AdditionalDependencies) - $(OutDir)PhysX3VehicleDEBUG.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../Lib/vc15win64\ - ./x64/PhysXVehicle/checked\ - .lib - PhysX3VehicleCHECKED - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/vehicle;./../../../Include/common;./../../../Include/geometry;./../../../Include/extensions;./../../../Include/cloth;./../../../Include;./../../../Include/pvd;./../../../Include/physxprofilesdk;./../../Common/src;./../../PhysXVehicle/src;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXMetaData/core/include;./../../PhysXVehicle/src/PhysXMetaData/include;./../../PvdSDK/src;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - %(AdditionalDependencies) - $(OutDir)PhysX3VehicleCHECKED.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../Lib/vc15win64\ - ./x64/PhysXVehicle/profile\ - .lib - PhysX3VehiclePROFILE - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/vehicle;./../../../Include/common;./../../../Include/geometry;./../../../Include/extensions;./../../../Include/cloth;./../../../Include;./../../../Include/pvd;./../../../Include/physxprofilesdk;./../../Common/src;./../../PhysXVehicle/src;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXMetaData/core/include;./../../PhysXVehicle/src/PhysXMetaData/include;./../../PvdSDK/src;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /INCREMENTAL:NO - %(AdditionalDependencies) - $(OutDir)PhysX3VehiclePROFILE.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../Lib/vc15win64\ - ./x64/PhysXVehicle/release\ - .lib - PhysX3Vehicle - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/vehicle;./../../../Include/common;./../../../Include/geometry;./../../../Include/extensions;./../../../Include/cloth;./../../../Include;./../../../Include/pvd;./../../../Include/physxprofilesdk;./../../Common/src;./../../PhysXVehicle/src;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXMetaData/core/include;./../../PhysXVehicle/src/PhysXMetaData/include;./../../PvdSDK/src;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /INCREMENTAL:NO - %(AdditionalDependencies) - $(OutDir)PhysX3Vehicle.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + debug + x64 + + + checked + x64 + + + profile + x64 + + + release + x64 + + + + {BC4778D3-142F-31D0-46EC-77203F28C874} + PhysXVehicle + + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + + + + + + + + + + + + + + + + ./../../../Lib/vc15win64\ + ./x64/PhysXVehicle/debug\ + .lib + PhysX3VehicleDEBUG + AllRules.ruleset + + + + + + false + false + Fast + UninitializedLocalUsageCheck + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /Zi /d2Zi+ + Disabled + ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/vehicle;./../../../Include/common;./../../../Include/geometry;./../../../Include/extensions;./../../../Include/cloth;./../../../Include;./../../../Include/pvd;./../../../Include/physxprofilesdk;./../../Common/src;./../../PhysXVehicle/src;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXMetaData/core/include;./../../PhysXVehicle/src/PhysXMetaData/include;./../../PvdSDK/src;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions) + false + Level4 + MultiThreadedDebug + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + %(AdditionalDependencies) + $(OutDir)PhysX3VehicleDEBUG.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../Lib/vc15win64\ + ./x64/PhysXVehicle/checked\ + .lib + PhysX3VehicleCHECKED + AllRules.ruleset + + + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/vehicle;./../../../Include/common;./../../../Include/geometry;./../../../Include/extensions;./../../../Include/cloth;./../../../Include;./../../../Include/pvd;./../../../Include/physxprofilesdk;./../../Common/src;./../../PhysXVehicle/src;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXMetaData/core/include;./../../PhysXVehicle/src/PhysXMetaData/include;./../../PvdSDK/src;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + %(AdditionalDependencies) + $(OutDir)PhysX3VehicleCHECKED.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../Lib/vc15win64\ + ./x64/PhysXVehicle/profile\ + .lib + PhysX3VehiclePROFILE + AllRules.ruleset + + + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/vehicle;./../../../Include/common;./../../../Include/geometry;./../../../Include/extensions;./../../../Include/cloth;./../../../Include;./../../../Include/pvd;./../../../Include/physxprofilesdk;./../../Common/src;./../../PhysXVehicle/src;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXMetaData/core/include;./../../PhysXVehicle/src/PhysXMetaData/include;./../../PvdSDK/src;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /INCREMENTAL:NO + %(AdditionalDependencies) + $(OutDir)PhysX3VehiclePROFILE.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../Lib/vc15win64\ + ./x64/PhysXVehicle/release\ + .lib + PhysX3Vehicle + AllRules.ruleset + + + + + false + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/vehicle;./../../../Include/common;./../../../Include/geometry;./../../../Include/extensions;./../../../Include/cloth;./../../../Include;./../../../Include/pvd;./../../../Include/physxprofilesdk;./../../Common/src;./../../PhysXVehicle/src;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXMetaData/core/include;./../../PhysXVehicle/src/PhysXMetaData/include;./../../PvdSDK/src;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /INCREMENTAL:NO + %(AdditionalDependencies) + $(OutDir)PhysX3Vehicle.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/PhysX_3.4/Source/compiler/vc15win64/SceneQuery.vcxproj b/PhysX_3.4/Source/compiler/vc15win64/SceneQuery.vcxproj index a74fb1565..be46908bd 100644 --- a/PhysX_3.4/Source/compiler/vc15win64/SceneQuery.vcxproj +++ b/PhysX_3.4/Source/compiler/vc15win64/SceneQuery.vcxproj @@ -1,282 +1,290 @@ - - - debug - x64 - - - checked - x64 - - - profile - x64 - - - release - x64 - - - - {042DAF3E-FF50-B73C-C9A4-53AC6D3CFCEC} - SceneQuery - - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - - - - - - - - - - - - - - - - ./../../../Lib/vc15win64\ - ./x64/SceneQuery/debug\ - .lib - $(ProjectName)DEBUG - AllRules.ruleset - - - - - - true - false - Fast - UninitializedLocalUsageCheck - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /Zi /d2Zi+ - Disabled - ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../../Externals/nvToolsExt/1/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include;./../../Common/src;./../../Common/src/windows;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../SceneQuery/include;./../../SimulationController/include;./../../LowLevel/API/include;./../../PhysX/src;./../../PhysX/src/buffering;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions) - false - Level4 - MultiThreadedDebug - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - %(AdditionalDependencies) - $(OutDir)$(ProjectName)DEBUG.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../Lib/vc15win64\ - ./x64/SceneQuery/checked\ - .lib - $(ProjectName)CHECKED - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../../Externals/nvToolsExt/1/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include;./../../Common/src;./../../Common/src/windows;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../SceneQuery/include;./../../SimulationController/include;./../../LowLevel/API/include;./../../PhysX/src;./../../PhysX/src/buffering;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - %(AdditionalDependencies) - $(OutDir)$(ProjectName)CHECKED.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../Lib/vc15win64\ - ./x64/SceneQuery/profile\ - .lib - $(ProjectName)PROFILE - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../../Externals/nvToolsExt/1/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include;./../../Common/src;./../../Common/src/windows;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../SceneQuery/include;./../../SimulationController/include;./../../LowLevel/API/include;./../../PhysX/src;./../../PhysX/src/buffering;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /INCREMENTAL:NO - %(AdditionalDependencies) - $(OutDir)$(ProjectName)PROFILE.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../Lib/vc15win64\ - ./x64/SceneQuery/release\ - .lib - $(ProjectName) - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../../Externals/nvToolsExt/1/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include;./../../Common/src;./../../Common/src/windows;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../SceneQuery/include;./../../SimulationController/include;./../../LowLevel/API/include;./../../PhysX/src;./../../PhysX/src/buffering;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /INCREMENTAL:NO - %(AdditionalDependencies) - $(OutDir)$(ProjectName).lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + debug + x64 + + + checked + x64 + + + profile + x64 + + + release + x64 + + + + {042DAF3E-FF50-B73C-C9A4-53AC6D3CFCEC} + SceneQuery + + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + + + + + + + + + + + + + + + + ./../../../Lib/vc15win64\ + ./x64/SceneQuery/debug\ + .lib + $(ProjectName)DEBUG + AllRules.ruleset + + + + + + false + false + Fast + UninitializedLocalUsageCheck + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /Zi /d2Zi+ + Disabled + ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../../Externals/nvToolsExt/1/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include;./../../Common/src;./../../Common/src/windows;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../SceneQuery/include;./../../SimulationController/include;./../../LowLevel/API/include;./../../PhysX/src;./../../PhysX/src/buffering;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions) + false + Level4 + MultiThreadedDebug + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + %(AdditionalDependencies) + $(OutDir)$(ProjectName)DEBUG.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../Lib/vc15win64\ + ./x64/SceneQuery/checked\ + .lib + $(ProjectName)CHECKED + AllRules.ruleset + + + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../../Externals/nvToolsExt/1/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include;./../../Common/src;./../../Common/src/windows;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../SceneQuery/include;./../../SimulationController/include;./../../LowLevel/API/include;./../../PhysX/src;./../../PhysX/src/buffering;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + %(AdditionalDependencies) + $(OutDir)$(ProjectName)CHECKED.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../Lib/vc15win64\ + ./x64/SceneQuery/profile\ + .lib + $(ProjectName)PROFILE + AllRules.ruleset + + + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../../Externals/nvToolsExt/1/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include;./../../Common/src;./../../Common/src/windows;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../SceneQuery/include;./../../SimulationController/include;./../../LowLevel/API/include;./../../PhysX/src;./../../PhysX/src/buffering;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /INCREMENTAL:NO + %(AdditionalDependencies) + $(OutDir)$(ProjectName)PROFILE.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../Lib/vc15win64\ + ./x64/SceneQuery/release\ + .lib + $(ProjectName) + AllRules.ruleset + + + + + false + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../../Externals/nvToolsExt/1/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include;./../../Common/src;./../../Common/src/windows;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../SceneQuery/include;./../../SimulationController/include;./../../LowLevel/API/include;./../../PhysX/src;./../../PhysX/src/buffering;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /INCREMENTAL:NO + %(AdditionalDependencies) + $(OutDir)$(ProjectName).lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/PhysX_3.4/Source/compiler/vc15win64/SimulationController.vcxproj b/PhysX_3.4/Source/compiler/vc15win64/SimulationController.vcxproj index 5bfa60074..92618e09f 100644 --- a/PhysX_3.4/Source/compiler/vc15win64/SimulationController.vcxproj +++ b/PhysX_3.4/Source/compiler/vc15win64/SimulationController.vcxproj @@ -1,420 +1,428 @@ - - - debug - x64 - - - checked - x64 - - - profile - x64 - - - release - x64 - - - - {49C560C2-F59E-0A40-E1D5-E0F25960F1AB} - SimulationController - - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - - - - - - - - - - - - - - - - ./../../../Lib/vc15win64\ - ./x64/SimulationController/debug\ - .lib - $(ProjectName)DEBUG - AllRules.ruleset - - - - - - true - false - Fast - UninitializedLocalUsageCheck - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /Zi /d2Zi+ - Disabled - ./../../PhysXGpu/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/particles;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../Common/src/windows;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../SimulationController/include;./../../SimulationController/src;./../../SimulationController/src/particles;./../../SimulationController/src/cloth;./../../LowLevel/windows/include;./../../LowLevel/API/include;./../../LowLevel/software/include;./../../LowLevel/common/include/math;./../../LowLevel/common/include/utils;./../../LowLevel/common/include/collision;./../../LowLevel/common/include/pipeline;./../../LowLevelCloth/include;./../../LowLevelAABB/include;./../../LowLevelDynamics/include;./../../LowLevelParticles/include;./../../../../Externals/nvToolsExt/1/include;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions) - false - Level4 - MultiThreadedDebug - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - %(AdditionalDependencies) - $(OutDir)$(ProjectName)DEBUG.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../Lib/vc15win64\ - ./x64/SimulationController/checked\ - .lib - $(ProjectName)CHECKED - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../PhysXGpu/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/particles;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../Common/src/windows;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../SimulationController/include;./../../SimulationController/src;./../../SimulationController/src/particles;./../../SimulationController/src/cloth;./../../LowLevel/windows/include;./../../LowLevel/API/include;./../../LowLevel/software/include;./../../LowLevel/common/include/math;./../../LowLevel/common/include/utils;./../../LowLevel/common/include/collision;./../../LowLevel/common/include/pipeline;./../../LowLevelCloth/include;./../../LowLevelAABB/include;./../../LowLevelDynamics/include;./../../LowLevelParticles/include;./../../../../Externals/nvToolsExt/1/include;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - %(AdditionalDependencies) - $(OutDir)$(ProjectName)CHECKED.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../Lib/vc15win64\ - ./x64/SimulationController/profile\ - .lib - $(ProjectName)PROFILE - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../PhysXGpu/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/particles;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../Common/src/windows;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../SimulationController/include;./../../SimulationController/src;./../../SimulationController/src/particles;./../../SimulationController/src/cloth;./../../LowLevel/windows/include;./../../LowLevel/API/include;./../../LowLevel/software/include;./../../LowLevel/common/include/math;./../../LowLevel/common/include/utils;./../../LowLevel/common/include/collision;./../../LowLevel/common/include/pipeline;./../../LowLevelCloth/include;./../../LowLevelAABB/include;./../../LowLevelDynamics/include;./../../LowLevelParticles/include;./../../../../Externals/nvToolsExt/1/include;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /INCREMENTAL:NO - %(AdditionalDependencies) - $(OutDir)$(ProjectName)PROFILE.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../Lib/vc15win64\ - ./x64/SimulationController/release\ - .lib - $(ProjectName) - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ - Full - ./../../PhysXGpu/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/particles;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../Common/src/windows;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../SimulationController/include;./../../SimulationController/src;./../../SimulationController/src/particles;./../../SimulationController/src/cloth;./../../LowLevel/windows/include;./../../LowLevel/API/include;./../../LowLevel/software/include;./../../LowLevel/common/include/math;./../../LowLevel/common/include/utils;./../../LowLevel/common/include/collision;./../../LowLevel/common/include/pipeline;./../../LowLevelCloth/include;./../../LowLevelAABB/include;./../../LowLevelDynamics/include;./../../LowLevelParticles/include;./../../../../Externals/nvToolsExt/1/include;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /INCREMENTAL:NO - %(AdditionalDependencies) - $(OutDir)$(ProjectName).lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + debug + x64 + + + checked + x64 + + + profile + x64 + + + release + x64 + + + + {49C560C2-F59E-0A40-E1D5-E0F25960F1AB} + SimulationController + + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + + + + + + + + + + + + + + + + ./../../../Lib/vc15win64\ + ./x64/SimulationController/debug\ + .lib + $(ProjectName)DEBUG + AllRules.ruleset + + + + + + false + false + Fast + UninitializedLocalUsageCheck + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /Zi /d2Zi+ + Disabled + ./../../PhysXGpu/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/particles;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../Common/src/windows;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../SimulationController/include;./../../SimulationController/src;./../../SimulationController/src/particles;./../../SimulationController/src/cloth;./../../LowLevel/windows/include;./../../LowLevel/API/include;./../../LowLevel/software/include;./../../LowLevel/common/include/math;./../../LowLevel/common/include/utils;./../../LowLevel/common/include/collision;./../../LowLevel/common/include/pipeline;./../../LowLevelCloth/include;./../../LowLevelAABB/include;./../../LowLevelDynamics/include;./../../LowLevelParticles/include;./../../../../Externals/nvToolsExt/1/include;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions) + false + Level4 + MultiThreadedDebug + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + %(AdditionalDependencies) + $(OutDir)$(ProjectName)DEBUG.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../Lib/vc15win64\ + ./x64/SimulationController/checked\ + .lib + $(ProjectName)CHECKED + AllRules.ruleset + + + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../PhysXGpu/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/particles;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../Common/src/windows;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../SimulationController/include;./../../SimulationController/src;./../../SimulationController/src/particles;./../../SimulationController/src/cloth;./../../LowLevel/windows/include;./../../LowLevel/API/include;./../../LowLevel/software/include;./../../LowLevel/common/include/math;./../../LowLevel/common/include/utils;./../../LowLevel/common/include/collision;./../../LowLevel/common/include/pipeline;./../../LowLevelCloth/include;./../../LowLevelAABB/include;./../../LowLevelDynamics/include;./../../LowLevelParticles/include;./../../../../Externals/nvToolsExt/1/include;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + %(AdditionalDependencies) + $(OutDir)$(ProjectName)CHECKED.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../Lib/vc15win64\ + ./x64/SimulationController/profile\ + .lib + $(ProjectName)PROFILE + AllRules.ruleset + + + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../PhysXGpu/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/particles;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../Common/src/windows;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../SimulationController/include;./../../SimulationController/src;./../../SimulationController/src/particles;./../../SimulationController/src/cloth;./../../LowLevel/windows/include;./../../LowLevel/API/include;./../../LowLevel/software/include;./../../LowLevel/common/include/math;./../../LowLevel/common/include/utils;./../../LowLevel/common/include/collision;./../../LowLevel/common/include/pipeline;./../../LowLevelCloth/include;./../../LowLevelAABB/include;./../../LowLevelDynamics/include;./../../LowLevelParticles/include;./../../../../Externals/nvToolsExt/1/include;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /INCREMENTAL:NO + %(AdditionalDependencies) + $(OutDir)$(ProjectName)PROFILE.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../Lib/vc15win64\ + ./x64/SimulationController/release\ + .lib + $(ProjectName) + AllRules.ruleset + + + + + false + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4548 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd5038 /wd5045 /wd4548 /d2Zi+ + Full + ./../../PhysXGpu/include;./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/particles;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../Common/src/windows;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/sweep;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../GeomUtils/src/ccd;./../../SimulationController/include;./../../SimulationController/src;./../../SimulationController/src/particles;./../../SimulationController/src/cloth;./../../LowLevel/windows/include;./../../LowLevel/API/include;./../../LowLevel/software/include;./../../LowLevel/common/include/math;./../../LowLevel/common/include/utils;./../../LowLevel/common/include/collision;./../../LowLevel/common/include/pipeline;./../../LowLevelCloth/include;./../../LowLevelAABB/include;./../../LowLevelDynamics/include;./../../LowLevelParticles/include;./../../../../Externals/nvToolsExt/1/include;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /INCREMENTAL:NO + %(AdditionalDependencies) + $(OutDir)$(ProjectName).lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/PxShared/src/compiler/vc15win64/PsFastXml.vcxproj b/PxShared/src/compiler/vc15win64/PsFastXml.vcxproj index fe4e81e19..6f59fb500 100644 --- a/PxShared/src/compiler/vc15win64/PsFastXml.vcxproj +++ b/PxShared/src/compiler/vc15win64/PsFastXml.vcxproj @@ -1,226 +1,234 @@ - - - debug - x64 - - - release - x64 - - - checked - x64 - - - profile - x64 - - - - {82276A9F-CCF0-C50C-BB4A-82ACFFE2A93A} - PsFastXml - - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - - - - - - - - - - - - - - - - ./../../../lib/vc15win64\ - ./x64/PsFastXml/debug\ - .lib - $(ProjectName)DEBUG_x64 - AllRules.ruleset - - - - - - true - false - Fast - UninitializedLocalUsageCheck - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /Zi /d2Zi+ - Disabled - ./../../../include;./../../foundation/include;./../../fastxml/include;%(AdditionalIncludeDirectories) - PX_FOUNDATION_DLL=0;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;%(PreprocessorDefinitions) - false - Level4 - MultiThreadedDebug - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - %(AdditionalDependencies) - $(OutDir)$(ProjectName)DEBUG_x64.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../lib/vc15win64\ - ./x64/PsFastXml/release\ - .lib - $(ProjectName)_x64 - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /d2Zi+ - Full - ./../../../include;./../../foundation/include;./../../fastxml/include;%(AdditionalIncludeDirectories) - PX_FOUNDATION_DLL=0;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /INCREMENTAL:NO - %(AdditionalDependencies) - $(OutDir)$(ProjectName)_x64.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../lib/vc15win64\ - ./x64/PsFastXml/checked\ - .lib - $(ProjectName)CHECKED_x64 - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /d2Zi+ - Full - ./../../../include;./../../foundation/include;./../../fastxml/include;%(AdditionalIncludeDirectories) - PX_FOUNDATION_DLL=0;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;PX_CHECKED=1;PX_NVTX=1;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - %(AdditionalDependencies) - $(OutDir)$(ProjectName)CHECKED_x64.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../lib/vc15win64\ - ./x64/PsFastXml/profile\ - .lib - $(ProjectName)PROFILE_x64 - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /d2Zi+ - Full - ./../../../include;./../../foundation/include;./../../fastxml/include;%(AdditionalIncludeDirectories) - PX_FOUNDATION_DLL=0;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;PX_PROFILE=1;PX_NVTX=1;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /INCREMENTAL:NO - %(AdditionalDependencies) - $(OutDir)$(ProjectName)PROFILE_x64.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - - - - - - - - - - + + + debug + x64 + + + release + x64 + + + checked + x64 + + + profile + x64 + + + + {82276A9F-CCF0-C50C-BB4A-82ACFFE2A93A} + PsFastXml + + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + + + + + + + + + + + + + + + + ./../../../lib/vc15win64\ + ./x64/PsFastXml/debug\ + .lib + $(ProjectName)DEBUG_x64 + AllRules.ruleset + + + + + + false + false + Fast + UninitializedLocalUsageCheck + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /Zi /d2Zi+ + Disabled + ./../../../include;./../../foundation/include;./../../fastxml/include;%(AdditionalIncludeDirectories) + PX_FOUNDATION_DLL=0;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;%(PreprocessorDefinitions) + false + Level4 + MultiThreadedDebug + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + %(AdditionalDependencies) + $(OutDir)$(ProjectName)DEBUG_x64.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../lib/vc15win64\ + ./x64/PsFastXml/release\ + .lib + $(ProjectName)_x64 + AllRules.ruleset + + + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /d2Zi+ + Full + ./../../../include;./../../foundation/include;./../../fastxml/include;%(AdditionalIncludeDirectories) + PX_FOUNDATION_DLL=0;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /INCREMENTAL:NO + %(AdditionalDependencies) + $(OutDir)$(ProjectName)_x64.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../lib/vc15win64\ + ./x64/PsFastXml/checked\ + .lib + $(ProjectName)CHECKED_x64 + AllRules.ruleset + + + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /d2Zi+ + Full + ./../../../include;./../../foundation/include;./../../fastxml/include;%(AdditionalIncludeDirectories) + PX_FOUNDATION_DLL=0;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;PX_CHECKED=1;PX_NVTX=1;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + %(AdditionalDependencies) + $(OutDir)$(ProjectName)CHECKED_x64.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../lib/vc15win64\ + ./x64/PsFastXml/profile\ + .lib + $(ProjectName)PROFILE_x64 + AllRules.ruleset + + + + + false + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /d2Zi+ + Full + ./../../../include;./../../foundation/include;./../../fastxml/include;%(AdditionalIncludeDirectories) + PX_FOUNDATION_DLL=0;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;PX_PROFILE=1;PX_NVTX=1;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /INCREMENTAL:NO + %(AdditionalDependencies) + $(OutDir)$(ProjectName)PROFILE_x64.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + + + + + + + + + + + \ No newline at end of file diff --git a/PxShared/src/compiler/vc15win64/PxFoundation.vcxproj b/PxShared/src/compiler/vc15win64/PxFoundation.vcxproj index 3f841e226..67c28a3c6 100644 --- a/PxShared/src/compiler/vc15win64/PxFoundation.vcxproj +++ b/PxShared/src/compiler/vc15win64/PxFoundation.vcxproj @@ -1,440 +1,448 @@ - - - debug - x64 - - - release - x64 - - - checked - x64 - - - profile - x64 - - - - {DF4537B3-3CE9-1581-10B6-A291FE3299C6} - PxFoundation - - - - DynamicLibrary - v141 - - - DynamicLibrary - v141 - - - DynamicLibrary - v141 - - - DynamicLibrary - v141 - - - - - - - - - - - - - - - - - - ./../../../bin/vc15win64\ - ./x64/PxFoundation/debug\ - .dll - PxFoundationDEBUG_x64 - AllRules.ruleset - - - true - - - - true - false - Fast - UninitializedLocalUsageCheck - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /Zi /d2Zi+ - Disabled - ./../../../include;$(WindowsSDK_IncludePath);./../../foundation/include;./../../foundation/include/windows;%(AdditionalIncludeDirectories) - PX_FOUNDATION_DLL=1;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;%(PreprocessorDefinitions) - false - Level4 - MultiThreadedDebug - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - %(AdditionalDependencies) - $(OutDir)PxFoundationDEBUG_x64.dll - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - Console - ./../../../lib/vc15win64/$(TargetName).lib - true - MachineX64 - - - - - - - - ./../../../bin/vc15win64\ - ./x64/PxFoundation/release\ - .dll - PxFoundation_x64 - AllRules.ruleset - - - true - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /d2Zi+ - Full - ./../../../include;$(WindowsSDK_IncludePath);./../../foundation/include;./../../foundation/include/windows;%(AdditionalIncludeDirectories) - PX_FOUNDATION_DLL=1;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /INCREMENTAL:NO - %(AdditionalDependencies) - $(OutDir)PxFoundation_x64.dll - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - Console - ./../../../lib/vc15win64/$(TargetName).lib - true - MachineX64 - - - - - - - - ./../../../bin/vc15win64\ - ./x64/PxFoundation/checked\ - .dll - PxFoundationCHECKED_x64 - AllRules.ruleset - - - true - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /d2Zi+ - Full - ./../../../include;$(WindowsSDK_IncludePath);./../../foundation/include;./../../foundation/include/windows;%(AdditionalIncludeDirectories) - PX_FOUNDATION_DLL=1;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;PX_CHECKED=1;PX_NVTX=1;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - %(AdditionalDependencies) - $(OutDir)PxFoundationCHECKED_x64.dll - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - Console - ./../../../lib/vc15win64/$(TargetName).lib - true - MachineX64 - - - - - - - - ./../../../bin/vc15win64\ - ./x64/PxFoundation/profile\ - .dll - PxFoundationPROFILE_x64 - AllRules.ruleset - - - true - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /d2Zi+ - Full - ./../../../include;$(WindowsSDK_IncludePath);./../../foundation/include;./../../foundation/include/windows;%(AdditionalIncludeDirectories) - PX_FOUNDATION_DLL=1;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;PX_PROFILE=1;PX_NVTX=1;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /INCREMENTAL:NO - %(AdditionalDependencies) - $(OutDir)PxFoundationPROFILE_x64.dll - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - Console - ./../../../lib/vc15win64/$(TargetName).lib - true - MachineX64 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + debug + x64 + + + release + x64 + + + checked + x64 + + + profile + x64 + + + + {DF4537B3-3CE9-1581-10B6-A291FE3299C6} + PxFoundation + + + + DynamicLibrary + v142 + + + DynamicLibrary + v142 + + + DynamicLibrary + v142 + + + DynamicLibrary + v142 + + + + + + + + + + + + + + + + + + ./../../../bin/vc15win64\ + ./x64/PxFoundation/debug\ + .dll + PxFoundationDEBUG_x64 + AllRules.ruleset + + + true + + + + false + false + Fast + UninitializedLocalUsageCheck + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /Zi /d2Zi+ + Disabled + ./../../../include;$(WindowsSDK_IncludePath);./../../foundation/include;./../../foundation/include/windows;%(AdditionalIncludeDirectories) + PX_FOUNDATION_DLL=1;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;%(PreprocessorDefinitions) + false + Level4 + MultiThreadedDebug + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + %(AdditionalDependencies) + $(OutDir)PxFoundationDEBUG_x64.dll + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + Console + ./../../../lib/vc15win64/$(TargetName).lib + true + MachineX64 + + + + + + + + ./../../../bin/vc15win64\ + ./x64/PxFoundation/release\ + .dll + PxFoundation_x64 + AllRules.ruleset + + + true + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /d2Zi+ + Full + ./../../../include;$(WindowsSDK_IncludePath);./../../foundation/include;./../../foundation/include/windows;%(AdditionalIncludeDirectories) + PX_FOUNDATION_DLL=1;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /INCREMENTAL:NO + %(AdditionalDependencies) + $(OutDir)PxFoundation_x64.dll + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + Console + ./../../../lib/vc15win64/$(TargetName).lib + true + MachineX64 + + + + + + + + ./../../../bin/vc15win64\ + ./x64/PxFoundation/checked\ + .dll + PxFoundationCHECKED_x64 + AllRules.ruleset + + + true + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /d2Zi+ + Full + ./../../../include;$(WindowsSDK_IncludePath);./../../foundation/include;./../../foundation/include/windows;%(AdditionalIncludeDirectories) + PX_FOUNDATION_DLL=1;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;PX_CHECKED=1;PX_NVTX=1;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + %(AdditionalDependencies) + $(OutDir)PxFoundationCHECKED_x64.dll + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + Console + ./../../../lib/vc15win64/$(TargetName).lib + true + MachineX64 + + + + + + + + ./../../../bin/vc15win64\ + ./x64/PxFoundation/profile\ + .dll + PxFoundationPROFILE_x64 + AllRules.ruleset + + + true + + + false + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /d2Zi+ + Full + ./../../../include;$(WindowsSDK_IncludePath);./../../foundation/include;./../../foundation/include/windows;%(AdditionalIncludeDirectories) + PX_FOUNDATION_DLL=1;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;PX_PROFILE=1;PX_NVTX=1;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /INCREMENTAL:NO + %(AdditionalDependencies) + $(OutDir)PxFoundationPROFILE_x64.dll + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + Console + ./../../../lib/vc15win64/$(TargetName).lib + true + MachineX64 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/PxShared/src/compiler/vc15win64/PxPvdSDK.vcxproj b/PxShared/src/compiler/vc15win64/PxPvdSDK.vcxproj index 66a786196..37ed2b351 100644 --- a/PxShared/src/compiler/vc15win64/PxPvdSDK.vcxproj +++ b/PxShared/src/compiler/vc15win64/PxPvdSDK.vcxproj @@ -1,413 +1,421 @@ - - - debug - x64 - - - release - x64 - - - checked - x64 - - - profile - x64 - - - - {D4255C0E-3C6E-8A94-959C-54BAC884B25C} - PxPvdSDK - - - - DynamicLibrary - v141 - - - DynamicLibrary - v141 - - - DynamicLibrary - v141 - - - DynamicLibrary - v141 - - - - - - - - - - - - - - - - - - ./../../../bin/vc15win64\ - ./x64/PxPvdSDK/debug\ - .dll - PxPvdSDKDEBUG_x64 - AllRules.ruleset - - - true - - - - true - false - Fast - UninitializedLocalUsageCheck - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /Zi /d2Zi+ - Disabled - ./../../../include;./../../pvd/include;./../../foundation/include;./../../filebuf/include;./../../../../Externals/nvToolsExt/1/include;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PVDSDK_DLL=1;PX_FOUNDATION_DLL=1;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;%(PreprocessorDefinitions) - false - Level4 - MultiThreadedDebug - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /DELAYLOAD:PxFoundationDEBUG_x64.dll - ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) - $(OutDir)PxPvdSDKDEBUG_x64.dll - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - Console - ./../../../lib/vc15win64/$(TargetName).lib - true - MachineX64 - - - - - - - - ./../../../bin/vc15win64\ - ./x64/PxPvdSDK/release\ - .dll - PxPvdSDK_x64 - AllRules.ruleset - - - true - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /d2Zi+ - Full - ./../../../include;./../../pvd/include;./../../foundation/include;./../../filebuf/include;./../../../../Externals/nvToolsExt/1/include;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PVDSDK_DLL=1;PX_FOUNDATION_DLL=1;NDEBUG;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /INCREMENTAL:NO /DELAYLOAD:PxFoundation_x64.dll - ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) - $(OutDir)PxPvdSDK_x64.dll - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - Console - ./../../../lib/vc15win64/$(TargetName).lib - true - MachineX64 - - - - - - - - ./../../../bin/vc15win64\ - ./x64/PxPvdSDK/checked\ - .dll - PxPvdSDKCHECKED_x64 - AllRules.ruleset - - - true - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /d2Zi+ - Full - ./../../../include;./../../pvd/include;./../../foundation/include;./../../filebuf/include;./../../../../Externals/nvToolsExt/1/include;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PVDSDK_DLL=1;PX_FOUNDATION_DLL=1;NDEBUG;PX_CHECKED=1;PX_NVTX=1;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /DELAYLOAD:PxFoundationCHECKED_x64.dll - ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) - $(OutDir)PxPvdSDKCHECKED_x64.dll - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - Console - ./../../../lib/vc15win64/$(TargetName).lib - true - MachineX64 - - - - - - - - ./../../../bin/vc15win64\ - ./x64/PxPvdSDK/profile\ - .dll - PxPvdSDKPROFILE_x64 - AllRules.ruleset - - - true - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /d2Zi+ - Full - ./../../../include;./../../pvd/include;./../../foundation/include;./../../filebuf/include;./../../../../Externals/nvToolsExt/1/include;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PVDSDK_DLL=1;PX_FOUNDATION_DLL=1;NDEBUG;PX_PROFILE=1;PX_NVTX=1;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /INCREMENTAL:NO /DELAYLOAD:PxFoundationPROFILE_x64.dll - ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) - $(OutDir)PxPvdSDKPROFILE_x64.dll - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - Console - ./../../../lib/vc15win64/$(TargetName).lib - true - MachineX64 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - false - - - - - + + + debug + x64 + + + release + x64 + + + checked + x64 + + + profile + x64 + + + + {D4255C0E-3C6E-8A94-959C-54BAC884B25C} + PxPvdSDK + + + + DynamicLibrary + v142 + + + DynamicLibrary + v142 + + + DynamicLibrary + v142 + + + DynamicLibrary + v142 + + + + + + + + + + + + + + + + + + ./../../../bin/vc15win64\ + ./x64/PxPvdSDK/debug\ + .dll + PxPvdSDKDEBUG_x64 + AllRules.ruleset + + + true + + + + false + false + Fast + UninitializedLocalUsageCheck + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /Zi /d2Zi+ + Disabled + ./../../../include;./../../pvd/include;./../../foundation/include;./../../filebuf/include;./../../../../Externals/nvToolsExt/1/include;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PVDSDK_DLL=1;PX_FOUNDATION_DLL=1;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;%(PreprocessorDefinitions) + false + Level4 + MultiThreadedDebug + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /DELAYLOAD:PxFoundationDEBUG_x64.dll + ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) + $(OutDir)PxPvdSDKDEBUG_x64.dll + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + Console + ./../../../lib/vc15win64/$(TargetName).lib + true + MachineX64 + + + + + + + + ./../../../bin/vc15win64\ + ./x64/PxPvdSDK/release\ + .dll + PxPvdSDK_x64 + AllRules.ruleset + + + true + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /d2Zi+ + Full + ./../../../include;./../../pvd/include;./../../foundation/include;./../../filebuf/include;./../../../../Externals/nvToolsExt/1/include;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PVDSDK_DLL=1;PX_FOUNDATION_DLL=1;NDEBUG;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /INCREMENTAL:NO /DELAYLOAD:PxFoundation_x64.dll + ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) + $(OutDir)PxPvdSDK_x64.dll + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + Console + ./../../../lib/vc15win64/$(TargetName).lib + true + MachineX64 + + + + + + + + ./../../../bin/vc15win64\ + ./x64/PxPvdSDK/checked\ + .dll + PxPvdSDKCHECKED_x64 + AllRules.ruleset + + + true + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /d2Zi+ + Full + ./../../../include;./../../pvd/include;./../../foundation/include;./../../filebuf/include;./../../../../Externals/nvToolsExt/1/include;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PVDSDK_DLL=1;PX_FOUNDATION_DLL=1;NDEBUG;PX_CHECKED=1;PX_NVTX=1;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /DELAYLOAD:PxFoundationCHECKED_x64.dll + ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) + $(OutDir)PxPvdSDKCHECKED_x64.dll + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + Console + ./../../../lib/vc15win64/$(TargetName).lib + true + MachineX64 + + + + + + + + ./../../../bin/vc15win64\ + ./x64/PxPvdSDK/profile\ + .dll + PxPvdSDKPROFILE_x64 + AllRules.ruleset + + + true + + + false + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /d2Zi+ + Full + ./../../../include;./../../pvd/include;./../../foundation/include;./../../filebuf/include;./../../../../Externals/nvToolsExt/1/include;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PVDSDK_DLL=1;PX_FOUNDATION_DLL=1;NDEBUG;PX_PROFILE=1;PX_NVTX=1;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /INCREMENTAL:NO /DELAYLOAD:PxFoundationPROFILE_x64.dll + ./../../../../Externals/nvToolsExt/1/lib/x64/nvToolsExt64_1.lib;%(AdditionalDependencies) + $(OutDir)PxPvdSDKPROFILE_x64.dll + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + Console + ./../../../lib/vc15win64/$(TargetName).lib + true + MachineX64 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + false + + + + + + \ No newline at end of file diff --git a/PxShared/src/compiler/vc15win64/PxTask.vcxproj b/PxShared/src/compiler/vc15win64/PxTask.vcxproj index 76acd7203..a486e5d6e 100644 --- a/PxShared/src/compiler/vc15win64/PxTask.vcxproj +++ b/PxShared/src/compiler/vc15win64/PxTask.vcxproj @@ -1,238 +1,246 @@ - - - debug - x64 - - - release - x64 - - - checked - x64 - - - profile - x64 - - - - {5B1132F6-84F8-142E-B951-ADB8505CC27F} - PxTask - - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - StaticLibrary - v141 - - - - - - - - - - - - - - - - - - ./../../../lib/vc15win64\ - ./x64/PxTask/debug\ - .lib - $(ProjectName)DEBUG_x64 - AllRules.ruleset - - - - - - true - false - Fast - UninitializedLocalUsageCheck - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /Zi /d2Zi+ - Disabled - ./../../../include;./../../task/include;./../../foundation/include;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;%(PreprocessorDefinitions) - false - Level4 - MultiThreadedDebug - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - %(AdditionalDependencies) - $(OutDir)$(ProjectName)DEBUG_x64.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../lib/vc15win64\ - ./x64/PxTask/release\ - .lib - $(ProjectName)_x64 - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /d2Zi+ - Full - ./../../../include;./../../task/include;./../../foundation/include;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /INCREMENTAL:NO - %(AdditionalDependencies) - $(OutDir)$(ProjectName)_x64.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../lib/vc15win64\ - ./x64/PxTask/checked\ - .lib - $(ProjectName)CHECKED_x64 - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /d2Zi+ - Full - ./../../../include;./../../task/include;./../../foundation/include;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;PX_CHECKED=1;PX_NVTX=1;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - %(AdditionalDependencies) - $(OutDir)$(ProjectName)CHECKED_x64.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - ./../../../lib/vc15win64\ - ./x64/PxTask/profile\ - .lib - $(ProjectName)PROFILE_x64 - AllRules.ruleset - - - - - - true - false - Fast - /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /d2Zi+ - Full - ./../../../include;./../../task/include;./../../foundation/include;%(AdditionalIncludeDirectories) - WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;PX_PROFILE=1;PX_NVTX=1;%(PreprocessorDefinitions) - false - Level4 - MultiThreaded - NotUsing - - $(TargetDir)\$(TargetName).pdb - ProgramDatabase - - - /INCREMENTAL:NO - %(AdditionalDependencies) - $(OutDir)$(ProjectName)PROFILE_x64.lib - %(AdditionalLibraryDirectories) - $(TargetDir)\$(TargetName).pdb - MachineX64 - - - - - true - - - - - - - - - - - - - - - - - - - - - - - - - + + + debug + x64 + + + release + x64 + + + checked + x64 + + + profile + x64 + + + + {5B1132F6-84F8-142E-B951-ADB8505CC27F} + PxTask + + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + StaticLibrary + v142 + + + + + + + + + + + + + + + + + + ./../../../lib/vc15win64\ + ./x64/PxTask/debug\ + .lib + $(ProjectName)DEBUG_x64 + AllRules.ruleset + + + + + + false + false + Fast + UninitializedLocalUsageCheck + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /Zi /d2Zi+ + Disabled + ./../../../include;./../../task/include;./../../foundation/include;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;%(PreprocessorDefinitions) + false + Level4 + MultiThreadedDebug + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + %(AdditionalDependencies) + $(OutDir)$(ProjectName)DEBUG_x64.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../lib/vc15win64\ + ./x64/PxTask/release\ + .lib + $(ProjectName)_x64 + AllRules.ruleset + + + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /d2Zi+ + Full + ./../../../include;./../../task/include;./../../foundation/include;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /INCREMENTAL:NO + %(AdditionalDependencies) + $(OutDir)$(ProjectName)_x64.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../lib/vc15win64\ + ./x64/PxTask/checked\ + .lib + $(ProjectName)CHECKED_x64 + AllRules.ruleset + + + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /d2Zi+ + Full + ./../../../include;./../../task/include;./../../foundation/include;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;PX_CHECKED=1;PX_NVTX=1;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + %(AdditionalDependencies) + $(OutDir)$(ProjectName)CHECKED_x64.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + ./../../../lib/vc15win64\ + ./x64/PxTask/profile\ + .lib + $(ProjectName)PROFILE_x64 + AllRules.ruleset + + + + + false + + + + false + false + Fast + /GR- /GF /MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4577 /wd4464 /wd4623 /wd4626 /wd5027 /wd4987 /wd4435 /wd5045 /wd4548 /d2Zi+ + Full + ./../../../include;./../../task/include;./../../foundation/include;%(AdditionalIncludeDirectories) + WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;NDEBUG;PX_PROFILE=1;PX_NVTX=1;%(PreprocessorDefinitions) + false + Level4 + MultiThreaded + NotUsing + + + $(TargetDir)\$(TargetName).pdb + ProgramDatabase + + + /INCREMENTAL:NO + %(AdditionalDependencies) + $(OutDir)$(ProjectName)PROFILE_x64.lib + %(AdditionalLibraryDirectories) + $(TargetDir)\$(TargetName).pdb + MachineX64 + + + + + true + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/PxShared/src/foundation/include/PsAllocator.h b/PxShared/src/foundation/include/PsAllocator.h index 42f88470d..53a44f284 100644 --- a/PxShared/src/foundation/include/PsAllocator.h +++ b/PxShared/src/foundation/include/PsAllocator.h @@ -1,4 +1,4 @@ -// +// // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions // are met: @@ -37,7 +37,7 @@ #if(PX_WINDOWS_FAMILY || PX_XBOXONE) #include -#include +#include #endif #if(PX_APPLE_FAMILY) #include