comparison Resources/CMake/GoogleLogConfiguration.cmake @ 1379:d0bb3dd34e2d

find build on old versions of MinGW
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 29 May 2015 12:59:43 +0200
parents 601d34afdab9
children 704de8c30ff5
comparison
equal deleted inserted replaced
1378:5dabfaf6034b 1379:d0bb3dd34e2d
164 message(FATAL_ERROR "Please install the libgoogle-glog-dev package") 164 message(FATAL_ERROR "Please install the libgoogle-glog-dev package")
165 endif() 165 endif()
166 166
167 link_libraries(glog) 167 link_libraries(glog)
168 endif() 168 endif()
169
170
171 CHECK_INCLUDE_FILES(sec_api/string_s.h HAVE_SECURE_STRING_EXTENSIONS)
172 if (HAVE_SECURE_STRING_EXTENSIONS)
173 add_definitions(-DHAVE_SECURE_STRING_EXTENSIONS=1)
174 else()
175 add_definitions(-DHAVE_SECURE_STRING_EXTENSIONS=0)
176 endif()