8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 16:43:03 +01:00

Fix MINGW build (#213)

Add `-std=c++11` and `-msse4` flags
This commit is contained in:
Alexandr N. Zamaraev 2019-07-06 20:10:41 +07:00 committed by Adriano dos Santos Fernandes
parent e10d83e772
commit f7b30cca26

View File

@ -206,6 +206,7 @@ if (MINGW)
set(CMAKE_STATIC_LIBRARY_PREFIX)
add_definitions(-D_WIN32_WINNT=0x0600)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -msse4 -std=c++11")
endif()
if (UNIX)