Removed some flags when compiling with clang

This commit is contained in:
Tom Lally 2022-08-29 23:33:11 +01:00
parent e56195c441
commit 134524ce85

View file

@ -1,6 +1,6 @@
project(CemuCafe)
if((CMAKE_C_COMPILER_ID STREQUAL "GNU") OR (CMAKE_C_COMPILER_ID STREQUAL "Clang"))
if(CMAKE_C_COMPILER_ID STREQUAL "GNU")
add_compile_options(-mssse3 -mavx2)
endif()