mirror of https://github.com/Chlumsky/msdfgen.git
Fixed build failure on windows.
1> import-svg.cpp 1>ext\import-svg.cpp(81): error C3861: 'strncasecmp': identifier not found 1>ext\import-svg.cpp(87): error C3861: 'strncasecmp': identifier not found 1>ext\import-svg.cpp(92): error C3861: 'strncasecmp': identifier not found
This commit is contained in:
parent
33f160dc8c
commit
30da48a1bc
|
|
@ -8,6 +8,7 @@
|
|||
|
||||
#ifdef _WIN32
|
||||
#pragma warning(disable:4996)
|
||||
#define strncasecmp(s1, s2, n) _strnicmp(s1, s2, n)
|
||||
#endif
|
||||
|
||||
#define ARC_SEGMENTS_PER_PI 2
|
||||
|
|
|
|||
Loading…
Reference in New Issue