You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
include\physx\extensions\PxCustomGeometryExt.h(35,10): error C1083: Datei (Include) kann nicht geöffnet werden: "geometry/PxCustomGeometry.h": No such file or directory
work with "" instead of <>
The text was updated successfully, but these errors were encountered:
#include <geometry/PxCustomGeometry.h>
#include <geometry/PxGjkQuery.h>
should be
#include "geometry/PxCustomGeometry.h"
#include "geometry/PxGjkQuery.h"
while using vcpkg with VS 17.10.1 results in
include\physx\extensions\PxCustomGeometryExt.h(35,10): error C1083: Datei (Include) kann nicht geöffnet werden: "geometry/PxCustomGeometry.h": No such file or directory
work with "" instead of <>
The text was updated successfully, but these errors were encountered: