Match more patterns of X86 processor
This commit is contained in:
parent
e2bf7f6f21
commit
52e7120dbd
1 changed files with 2 additions and 2 deletions
|
|
@ -257,9 +257,9 @@ if(NOT VST3_PACKAGE_ARCHITECTURE)
|
|||
if(APPLE)
|
||||
# VST3 packages are universal on Apple, architecture string not needed
|
||||
else()
|
||||
if(CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64")
|
||||
if(CMAKE_SYSTEM_PROCESSOR MATCHES "^(x86_64|amd64|AMD64)$")
|
||||
set(VST3_PACKAGE_ARCHITECTURE "x86_64")
|
||||
elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^i.86$")
|
||||
elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^(i.86|x86)$")
|
||||
if(WIN32)
|
||||
set(VST3_PACKAGE_ARCHITECTURE "x86")
|
||||
else()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue