fix for msvc14

This commit is contained in:
Hoernchen 2017-09-19 19:23:00 +02:00 committed by Eric Wild
parent 18bf26989c
commit b04c2f9f03
1 changed files with 3 additions and 0 deletions

View File

@ -55,6 +55,9 @@ if(CMAKE_COMPILER_IS_GNUCC AND NOT WIN32)
ADD_DEFINITIONS(-Wdeclaration-after-statement)
#http://gcc.gnu.org/wiki/Visibility
add_definitions(-fvisibility=hidden)
elseif(MSVC14 OR MSVC14)
#pthread-w32 issue, timespec is now part of time.h
ADD_DEFINITIONS(-D_TIMESPEC_DEFINED)
endif()
########################################################################