cmake: disable detecting global macOS sdk
This commit is contained in:
parent
b99cae3931
commit
acbf439fef
|
@ -48,6 +48,9 @@ cmakeConfigurePhase() {
|
||||||
# because we usually do not package the framework
|
# because we usually do not package the framework
|
||||||
cmakeFlags="-DCMAKE_FIND_FRAMEWORK=last $cmakeFlags"
|
cmakeFlags="-DCMAKE_FIND_FRAMEWORK=last $cmakeFlags"
|
||||||
|
|
||||||
|
# we never want to use the global macOS SDK
|
||||||
|
cmakeFlags="-DCMAKE_OSX_SYSROOT= $cmakeFlags"
|
||||||
|
|
||||||
# This installs shared libraries with a fully-specified install
|
# This installs shared libraries with a fully-specified install
|
||||||
# name. By default, cmake installs shared libraries with just the
|
# name. By default, cmake installs shared libraries with just the
|
||||||
# basename as the install name, which means that, on Darwin, they
|
# basename as the install name, which means that, on Darwin, they
|
||||||
|
|
Loading…
Reference in New Issue