mirror of https://github.com/freetype/freetype
* CMakeLists.txt: Accommodate MingGW.
See https://github.com/StephanTLavavej/mingw-distro/issues/97.
This commit is contained in:
parent
7bac4d146a
commit
6d9147263b
|
@ -297,7 +297,7 @@ if (NOT FT_DISABLE_BROTLI)
|
|||
endif ()
|
||||
|
||||
# Create the configuration file
|
||||
if (UNIX)
|
||||
if (UNIX AND NOT WIN32)
|
||||
check_include_file("unistd.h" HAVE_UNISTD_H)
|
||||
check_include_file("fcntl.h" HAVE_FCNTL_H)
|
||||
|
||||
|
@ -423,10 +423,10 @@ set(BASE_SRCS
|
|||
src/winfonts/winfnt.c
|
||||
)
|
||||
|
||||
if (UNIX)
|
||||
list(APPEND BASE_SRCS "builds/unix/ftsystem.c")
|
||||
elseif (WIN32)
|
||||
if (WIN32)
|
||||
list(APPEND BASE_SRCS "builds/windows/ftsystem.c")
|
||||
elseif (UNIX)
|
||||
list(APPEND BASE_SRCS "builds/unix/ftsystem.c")
|
||||
else ()
|
||||
list(APPEND BASE_SRCS "src/base/ftsystem.c")
|
||||
endif ()
|
||||
|
|
Loading…
Reference in New Issue