OSX: Prefer Macports over Homebrew if available
This commit is contained in:
parent
f928c81afc
commit
5467b90982
|
@ -303,7 +303,16 @@ if (${CMAKE_SYSTEM_NAME} MATCHES "Windows")
|
||||||
)
|
)
|
||||||
elseif (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
elseif (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
||||||
|
|
||||||
if (IS_DIRECTORY /usr/local/opt/openssl)
|
if (IS_DIRECTORY /opt/local)
|
||||||
|
# macports
|
||||||
|
set (OPENSSL_ROOT /opt/local)
|
||||||
|
|
||||||
|
set (OPENSSL_LIBS
|
||||||
|
${OPENSSL_ROOT}/lib/libssl.a
|
||||||
|
${OPENSSL_ROOT}/lib/libcrypto.a
|
||||||
|
z
|
||||||
|
)
|
||||||
|
elseif (IS_DIRECTORY /usr/local/opt/openssl)
|
||||||
# brew
|
# brew
|
||||||
set (OPENSSL_ROOT /usr/local/opt/openssl)
|
set (OPENSSL_ROOT /usr/local/opt/openssl)
|
||||||
|
|
||||||
|
@ -313,15 +322,6 @@ elseif (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
||||||
${OPENSSL_ROOT}/lib/libssl.a
|
${OPENSSL_ROOT}/lib/libssl.a
|
||||||
${OPENSSL_ROOT}/lib/libcrypto.a
|
${OPENSSL_ROOT}/lib/libcrypto.a
|
||||||
)
|
)
|
||||||
else(IS_DIRECTORY /opt/local)
|
|
||||||
# macports
|
|
||||||
set (OPENSSL_ROOT /opt/local)
|
|
||||||
|
|
||||||
set (OPENSSL_LIBS
|
|
||||||
${OPENSSL_ROOT}/lib/libssl.a
|
|
||||||
${OPENSSL_ROOT}/lib/libcrypto.a
|
|
||||||
z
|
|
||||||
)
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
elseif (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
|
elseif (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
|
||||||
|
|
|
@ -4,18 +4,7 @@ if [ ! $BARRIER_BUILD_ENV ]; then
|
||||||
|
|
||||||
printf "Modifying environment for Barrier build..."
|
printf "Modifying environment for Barrier build..."
|
||||||
|
|
||||||
if command -v brew; then
|
if command -v port; then
|
||||||
printf "Detected Homebrew"
|
|
||||||
QT_PATH=$(brew --prefix qt)
|
|
||||||
OPENSSL_PATH=$(brew --prefix openssl)
|
|
||||||
|
|
||||||
export BARRIER_BUILD_BREW=1
|
|
||||||
export CMAKE_PREFIX_PATH="$QT_PATH:$CMAKE_PREFIX_PATH"
|
|
||||||
export LD_LIBRARY_PATH="$OPENSSL_PATH/lib:$LD_LIBRARY_PATH"
|
|
||||||
export CPATH="$OPENSSL_PATH/include:$CPATH"
|
|
||||||
export PKG_CONFIG_PATH="$OPENSSL_PATH/lib/pkgconfig:$PKG_CONFIG_PATH"
|
|
||||||
|
|
||||||
elif command -v port; then
|
|
||||||
printf "Detected Macports"
|
printf "Detected Macports"
|
||||||
|
|
||||||
if [ ! -d /opt/local/lib/cmake/Qt5 ]; then
|
if [ ! -d /opt/local/lib/cmake/Qt5 ]; then
|
||||||
|
@ -26,6 +15,18 @@ if [ ! $BARRIER_BUILD_ENV ]; then
|
||||||
export LD_LIBRARY_PATH="/opt/local/lib:$LD_LIBRARY_PATH"
|
export LD_LIBRARY_PATH="/opt/local/lib:$LD_LIBRARY_PATH"
|
||||||
export CPATH="/opt/local/include:$CPATH"
|
export CPATH="/opt/local/include:$CPATH"
|
||||||
export PKG_CONFIG_PATH="/opt/local/libexec/qt5/lib/pkgconfig:$PKG_CONFIG_PATH"
|
export PKG_CONFIG_PATH="/opt/local/libexec/qt5/lib/pkgconfig:$PKG_CONFIG_PATH"
|
||||||
|
|
||||||
|
elif command -v brew; then
|
||||||
|
printf "Detected Homebrew"
|
||||||
|
QT_PATH=$(brew --prefix qt)
|
||||||
|
OPENSSL_PATH=$(brew --prefix openssl)
|
||||||
|
|
||||||
|
export BARRIER_BUILD_BREW=1
|
||||||
|
export CMAKE_PREFIX_PATH="$QT_PATH:$CMAKE_PREFIX_PATH"
|
||||||
|
export LD_LIBRARY_PATH="$OPENSSL_PATH/lib:$LD_LIBRARY_PATH"
|
||||||
|
export CPATH="$OPENSSL_PATH/include:$CPATH"
|
||||||
|
export PKG_CONFIG_PATH="$OPENSSL_PATH/lib/pkgconfig:$PKG_CONFIG_PATH"
|
||||||
|
|
||||||
else
|
else
|
||||||
printf "Neither Homebrew nor Macports is installed. Can't get dependency paths"
|
printf "Neither Homebrew nor Macports is installed. Can't get dependency paths"
|
||||||
exit 1
|
exit 1
|
||||||
|
|
Loading…
Reference in New Issue