mirror of
https://github.com/lubosz/overte.git
synced 2025-04-06 01:02:29 +02:00
Handle empty environment variables as false
This commit is contained in:
parent
2a8278f522
commit
506fd9563a
3 changed files with 9 additions and 6 deletions
|
@ -102,11 +102,14 @@ include("${CMAKE_BINARY_DIR}/vcpkg.cmake")
|
|||
if (HIFI_ANDROID)
|
||||
set(QT_CMAKE_PREFIX_PATH "$ENV{HIFI_ANDROID_PRECOMPILED}/qt/lib/cmake")
|
||||
else()
|
||||
if (NOT DEFINED ENV{VIRCADIA_USE_SYSTEM_QT})
|
||||
if(NOT EXISTS "${CMAKE_BINARY_DIR}/qt.cmake")
|
||||
if ("$ENV{VIRCADIA_USE_SYSTEM_QT}" STREQUAL "")
|
||||
if(NOT EXISTS "${CMAKE_BINARY_DIR}/qt.cmake")
|
||||
message(FATAL_ERROR "qt configuration missing.")
|
||||
endif()
|
||||
include("${CMAKE_BINARY_DIR}/qt.cmake")
|
||||
message(STATUS "${CMAKE_BINARY_DIR}/qt.cmake included!")
|
||||
else()
|
||||
message(STATUS "System Qt in use, not including qt.cmake!")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
|
@ -293,7 +296,7 @@ set_packaging_parameters()
|
|||
# Locate the required Qt build on the filesystem
|
||||
setup_qt()
|
||||
|
||||
if (NOT DEFINED ENV{VIRCADIA_USE_SYSTEM_QT})
|
||||
if ("$ENV{VIRCADIA_USE_SYSTEM_QT}" STREQUAL "")
|
||||
list(APPEND CMAKE_PREFIX_PATH "${QT_CMAKE_PREFIX_PATH}")
|
||||
endif()
|
||||
|
||||
|
|
|
@ -37,7 +37,7 @@ endif()
|
|||
system_qt = False
|
||||
|
||||
# Here we handle the 3 possible cases of dealing with Qt:
|
||||
if os.getenv('VIRCADIA_USE_SYSTEM_QT'):
|
||||
if os.getenv('VIRCADIA_USE_SYSTEM_QT', "") != "":
|
||||
# 1. Using the system provided Qt. This is only recommended for Qt 5.15.0 and above,
|
||||
# as it includes a required fix on Linux.
|
||||
#
|
||||
|
@ -53,7 +53,7 @@ endif()
|
|||
system_qt = True
|
||||
print("Using system Qt")
|
||||
|
||||
elif os.getenv('VIRCADIA_QT_PATH'):
|
||||
elif os.getenv('VIRCADIA_QT_PATH', "") != "":
|
||||
# 2. Using an user-provided directory.
|
||||
# VIRCADIA_QT_PATH must point to a directory with a Qt install in it.
|
||||
|
||||
|
|
|
@ -435,7 +435,7 @@ else()
|
|||
endif()
|
||||
endif()
|
||||
|
||||
if (NOT DEFINED ENV{VIRCADIA_USE_SYSTEM_QT})
|
||||
if ("$ENV{VIRCADIA_USE_SYSTEM_QT}" STREQUAL "")
|
||||
if (DEV_BUILD AND (APPLE OR UNIX))
|
||||
# create a qt.conf file to override hard-coded search paths in Qt libs
|
||||
set(QT_LIB_PATH "${QT_CMAKE_PREFIX_PATH}/../..")
|
||||
|
|
Loading…
Reference in a new issue