Skip to content

Commit

Permalink
CMake: Fix typo in Mac CMAKE_CXX_FLAGS
Browse files Browse the repository at this point in the history
  • Loading branch information
stenzek committed Jul 7, 2024
1 parent 7373342 commit f5cc709
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeModules/DuckStationUtils.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ function(detect_architecture)
message(STATUS "Building x86_64 MacOS binaries.")
set(CPU_ARCH_X64 TRUE PARENT_SCOPE)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Xarch_x86_64 -msse4.1" PARENT_SCOPE)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Xarch_864_64 -msse4.1" PARENT_SCOPE)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Xarch_x86_64 -msse4.1" PARENT_SCOPE)
endif()
if("arm64" IN_LIST CMAKE_OSX_ARCHITECTURES)
message(STATUS "Building ARM64 MacOS binaries.")
Expand Down

0 comments on commit f5cc709

Please sign in to comment.