mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-07 08:24:43 -04:00
Fix indentation
This commit is contained in:
+8
-8
@@ -61,10 +61,10 @@ if(ENABLE_LIBUNWIND AND UNIX AND NOT ANDROID)
|
||||
set(LIBUNWIND_LIBRARIES ${LIBUNWIND_LIB})
|
||||
if(CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64|amd64|AMD64|aarch64|arm64")
|
||||
if(CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64|arm64")
|
||||
find_library(LIBUNWIND_ARCH_LIB unwind-aarch64)
|
||||
else()
|
||||
find_library(LIBUNWIND_ARCH_LIB unwind-x86_64)
|
||||
endif()
|
||||
find_library(LIBUNWIND_ARCH_LIB unwind-aarch64)
|
||||
else()
|
||||
find_library(LIBUNWIND_ARCH_LIB unwind-x86_64)
|
||||
endif()
|
||||
if(LIBUNWIND_ARCH_LIB)
|
||||
list(APPEND LIBUNWIND_LIBRARIES ${LIBUNWIND_ARCH_LIB})
|
||||
endif()
|
||||
@@ -81,10 +81,10 @@ if(ENABLE_LIBUNWIND AND UNIX AND NOT ANDROID)
|
||||
list(JOIN LIBUNWIND_LIBRARIES ";" _libunwind_libs_joined)
|
||||
if(NOT _libunwind_libs_joined MATCHES "unwind-x86_64" AND NOT _libunwind_libs_joined MATCHES "unwind-aarch64")
|
||||
if(CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64|arm64")
|
||||
find_library(LIBUNWIND_ARCH_LIB unwind-aarch64)
|
||||
else()
|
||||
find_library(LIBUNWIND_ARCH_LIB unwind-x86_64)
|
||||
endif()
|
||||
find_library(LIBUNWIND_ARCH_LIB unwind-aarch64)
|
||||
else()
|
||||
find_library(LIBUNWIND_ARCH_LIB unwind-x86_64)
|
||||
endif()
|
||||
if(LIBUNWIND_ARCH_LIB)
|
||||
list(APPEND LIBUNWIND_LIBRARIES ${LIBUNWIND_ARCH_LIB})
|
||||
else()
|
||||
|
||||
Reference in New Issue
Block a user