* CMakeLists.txt [win32]: Suppress warnings for POSIX functions.

This commit is contained in:
Steve Robinson 2018-01-10 07:48:39 +01:00 committed by Werner Lemberg
parent cc2f3cdecf
commit 707cd028b2
2 changed files with 7 additions and 0 deletions

View File

@ -162,6 +162,9 @@ set(SHARED_LIBRARY_VERSION ${VERSION_MAJOR}.${VERSION_MINOR})
# Compiler definitions for building the library
add_definitions(-DFT2_BUILD_LIBRARY)
if (WIN32)
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
endif ()
# Find dependencies

View File

@ -1,3 +1,7 @@
2018-01-10 Steve Robinson <ssrobins@gmail.com>
* CMakeLists.txt [win32]: Suppress warnings for POSIX functions.
2018-01-10 Ewald Hew <ewaldhew@gmail.com>
[psaux] Correctly handle Flex features (#52846).