Skip to content
This repository has been archived by the owner on Nov 8, 2023. It is now read-only.

Commit

Permalink
* CMakeLists.txt [win32]: Suppress warnings for POSIX functions.
Browse files Browse the repository at this point in the history
  • Loading branch information
ssrobins authored and lemzwerg committed Jan 10, 2018
1 parent cc2f3cd commit 707cd02
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CMakeLists.txt
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions ChangeLog
@@ -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).
Expand Down

0 comments on commit 707cd02

Please sign in to comment.