When building Ptex on Windows using MinGW or cross-compiling from Linux with MXE, the file src/ptex/PtexPlatform.h includes #include <Windows.h>. On case-sensitive filesystems, this causes the build to fail because the header must be included as #include <windows.h>. Changing the include to lowercase fixes the issue. It would be helpful if the repository updated this include to support case-sensitive builds across platforms.
When building
Ptexon Windows usingMinGWor cross-compiling from Linux with MXE, the filesrc/ptex/PtexPlatform.hincludes#include <Windows.h>. On case-sensitive filesystems, this causes the build to fail because the header must be included as#include <windows.h>. Changing the include to lowercase fixes the issue. It would be helpful if the repository updated this include to support case-sensitive builds across platforms.