Fix open check

This commit is contained in:
Victor Zverovich 2014-09-29 09:27:32 -07:00
parent 8c4db5081b
commit e1c046c984

View File

@ -24,9 +24,6 @@ else ()
set(CPP11_FLAG -std=c++0x) set(CPP11_FLAG -std=c++0x)
endif () endif ()
endif () endif ()
if (CPP11_FLAG)
set(CMAKE_REQUIRED_FLAGS ${CPP11_FLAG})
endif ()
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH}
"${CMAKE_CURRENT_SOURCE_DIR}/cmake") "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
@ -64,6 +61,10 @@ if (HAVE_OPEN)
set(FMT_SOURCES ${FMT_SOURCES} posix.cc posix.h) set(FMT_SOURCES ${FMT_SOURCES} posix.cc posix.h)
endif () endif ()
if (CPP11_FLAG)
set(CMAKE_REQUIRED_FLAGS ${CPP11_FLAG})
endif ()
add_library(format ${shared} ${FMT_SOURCES}) add_library(format ${shared} ${FMT_SOURCES})
if (CMAKE_COMPILER_IS_GNUCXX) if (CMAKE_COMPILER_IS_GNUCXX)
set_target_properties(format PROPERTIES COMPILE_FLAGS set_target_properties(format PROPERTIES COMPILE_FLAGS