cmake: avoid security warnings under msvc

fopen, sscanf are error checked and only used in the examples. this
matches Makefile.vc.

Change-Id: I411c3ace6b5db092656d6b03dc5b438bd70616fc
This commit is contained in:
James Zern 2017-11-15 18:41:34 -08:00
parent 650eac5542
commit 80285d97ad

View File

@ -103,7 +103,10 @@ endforeach()
### Define the mandatory libraries.
# Build the webpdecoder library.
if(NOT MSVC)
if(MSVC)
# avoid security warnings for e.g., fopen() used in the examples.
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
else()
add_definitions(-Wall)
endif()
include_directories(${CMAKE_CURRENT_SOURCE_DIR} ${WEBP_DEP_INCLUDE_DIRS})