From 134524ce85d3d5fc231471cc00bbf3e3b5d73397 Mon Sep 17 00:00:00 2001 From: Tom Lally Date: Mon, 29 Aug 2022 23:33:11 +0100 Subject: [PATCH] Removed some flags when compiling with clang --- src/Cafe/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Cafe/CMakeLists.txt b/src/Cafe/CMakeLists.txt index a4a60d0d..634fe0eb 100644 --- a/src/Cafe/CMakeLists.txt +++ b/src/Cafe/CMakeLists.txt @@ -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()