Skip to content
Snippets Groups Projects
Commit f60f5a86 authored by Eidolon's avatar Eidolon
Browse files

Check before using -mno-ms-bitfields

parent 67ee82e1
No related branches found
No related tags found
No related merge requests found
......@@ -408,8 +408,8 @@ endif()
# Compatibility flag with later versions of GCC
# We should really fix our code to not need this
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
check_cxx_compiler_flag("-mno-ms-bitfields" HAS_MS_BITFIELDS)
if(HAS_MS_BITFIELDS)
check_cxx_compiler_flag("-mno-ms-bitfields" HAS_NO_MS_BITFIELDS)
if(HAS_NO_MS_BITFIELDS)
target_compile_options(SRB2SDL2 PRIVATE -mno-ms-bitfields)
endif()
endif()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment