fix cross compiling with MinGW (#499)

MinGW on Linux is case sensitive. Windows is case insensitive.

Signed-off-by: Rosen Penev <rosenp@gmail.com>

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev
2022-10-09 15:08:28 -07:00
committed by GitHub
parent f4b47333be
commit e04ea27dcd
3 changed files with 3 additions and 3 deletions

View File

@@ -33,7 +33,7 @@
#ifndef NOMINMAX
#define NOMINMAX
#endif
#include <Windows.h>
#include <windows.h>
#ifndef UNICODE
#error Must be compiled in UNICODE mode
#endif