mirror of https://github.com/PCSX2/pcsx2.git
"!64BIT_BUILD" is a variable name. Changed to "NOT 64BIT_BUILD" which is
the negation of the 64BIT_BUILD variable defined in BuildParameters.cmake.
This commit is contained in:
parent
6eb0ecbe7c
commit
c963e0b62b
|
@ -121,7 +121,7 @@ if(wxWidgets_FOUND)
|
||||||
if(Linux)
|
if(Linux)
|
||||||
# Force the use of 32 bit library configuration on
|
# Force the use of 32 bit library configuration on
|
||||||
# 64 bits machine with 32 bits library in /usr/lib32
|
# 64 bits machine with 32 bits library in /usr/lib32
|
||||||
if(_ARCH_64 AND !64BIT_BUILD)
|
if(_ARCH_64 AND NOT 64BIT_BUILD)
|
||||||
## There is no guarantee that wx-config is a link to a 32 bits library. So you need to force the destinity
|
## There is no guarantee that wx-config is a link to a 32 bits library. So you need to force the destinity
|
||||||
# Library can go into 3 path major paths (+ multiarch but you will see that later when implementation is done)
|
# Library can go into 3 path major paths (+ multiarch but you will see that later when implementation is done)
|
||||||
# 1/ /usr/lib32 (32 bits only)
|
# 1/ /usr/lib32 (32 bits only)
|
||||||
|
|
Loading…
Reference in New Issue