mirror of
https://github.com/yuzu-emu/FasTC
synced 2024-11-26 18:33:25 +00:00
Remove pedantic flag because some things are just obnoxious (like no anonymous structs in unions.
This commit is contained in:
parent
3cd699ab58
commit
28a55cc268
1 changed files with 2 additions and 2 deletions
|
@ -69,11 +69,11 @@ IF(MSVC)
|
|||
ENDIF(MSVC)
|
||||
|
||||
IF(CMAKE_COMPILER_IS_GNUCC)
|
||||
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -pedantic -Werror")
|
||||
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Werror -fms-extensions")
|
||||
ENDIF()
|
||||
|
||||
IF(CMAKE_COMPILER_IS_GNUCXX)
|
||||
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -pedantic -Werror")
|
||||
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Werror -fms-extensions")
|
||||
ENDIF()
|
||||
|
||||
ADD_SUBDIRECTORY(BPTCEncoder)
|
||||
|
|
Loading…
Reference in a new issue