Add support of some ARM architectures for VST (by @hexdump0815)
This commit is contained in:
parent
f9c642e49e
commit
4a4936f2b5
1 changed files with 4 additions and 0 deletions
|
|
@ -30,6 +30,10 @@ if(NOT VST3_PACKAGE_ARCHITECTURE)
|
||||||
else()
|
else()
|
||||||
set(VST3_PACKAGE_ARCHITECTURE "i386")
|
set(VST3_PACKAGE_ARCHITECTURE "i386")
|
||||||
endif()
|
endif()
|
||||||
|
elseif(VST3_SYSTEM_PROCESSOR MATCHES "^(armv7l)$")
|
||||||
|
set(VST3_PACKAGE_ARCHITECTURE "armv7l")
|
||||||
|
elseif(VST3_SYSTEM_PROCESSOR MATCHES "^(aarch64)$")
|
||||||
|
set(VST3_PACKAGE_ARCHITECTURE "aarch64")
|
||||||
else()
|
else()
|
||||||
message(FATAL_ERROR "We don't know this architecture for VST3: ${VST3_SYSTEM_PROCESSOR}.")
|
message(FATAL_ERROR "We don't know this architecture for VST3: ${VST3_SYSTEM_PROCESSOR}.")
|
||||||
endif()
|
endif()
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue