Skip to content

Commit

Permalink
fix: #265 added aarch64 to the list of detected system processors for…
Browse files Browse the repository at this point in the history
… linux build
  • Loading branch information
Almamu committed Nov 8, 2024
1 parent f71136f commit 4a063d0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,11 @@ elseif("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
set(CEF_PLATFORM "linuxarm")
set(CEF_ARCH_DETECTION "${CMAKE_SYSTEM_PROCESSOR}")
elseif("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "arm64")
set(PROJECT_ARCH "arm64")
set(CEF_PLATFORM "linuxarm64")
set(CEF_ARCH_DETECTION "${CMAKE_SYSTEM_PROCESSOR}")
elseif("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "aarch64")
set(PROJECT_ARCH "arm64")
set(CEF_PLATFORM "linuxarm64")
set(CEF_ARCH_DETECTION "${CMAKE_SYSTEM_PROCESSOR}")
elseif(CMAKE_SIZEOF_VOID_P MATCHES 8)
Expand Down

0 comments on commit 4a063d0

Please sign in to comment.