Fix CMake build flags for MinGW
This commit is contained in:
parent
c89638d73c
commit
b21cd65d30
@ -102,7 +102,7 @@ if (MSVC)
|
|||||||
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUCXX)
|
if (NOT WIN32 AND (CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUCXX))
|
||||||
set(CMAKE_C_FLAGS "-fPIC")
|
set(CMAKE_C_FLAGS "-fPIC")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
@ -415,7 +415,7 @@ if (NOT WITHOUT_TESTS)
|
|||||||
# Test suites.
|
# Test suites.
|
||||||
#
|
#
|
||||||
if (CMAKE_COMPILER_IS_GNUCC)
|
if (CMAKE_COMPILER_IS_GNUCC)
|
||||||
add_definitions(-Wall -Wextra -Wdeclaration-after-statement -Werror)
|
add_definitions(-Wall -Wextra -Wdeclaration-after-statement)
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
set(api_tests
|
set(api_tests
|
||||||
|
Loading…
Reference in New Issue
Block a user