mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Simplify system Qt path
This commit is contained in:
parent
1e63916940
commit
ca489bd420
3 changed files with 33 additions and 39 deletions
|
@ -101,11 +101,13 @@ include("${CMAKE_BINARY_DIR}/vcpkg.cmake")
|
|||
|
||||
if (HIFI_ANDROID)
|
||||
set(QT_CMAKE_PREFIX_PATH "$ENV{HIFI_ANDROID_PRECOMPILED}/qt/lib/cmake")
|
||||
else()
|
||||
if(NOT EXISTS "${CMAKE_BINARY_DIR}/qt.cmake")
|
||||
message(FATAL_ERROR "qt configuration missing.")
|
||||
else()
|
||||
if (NOT $ENV{VIRCADIA_USE_SYSTEM_QT})
|
||||
if(NOT EXISTS "${CMAKE_BINARY_DIR}/qt.cmake")
|
||||
message(FATAL_ERROR "qt configuration missing.")
|
||||
endif()
|
||||
include("${CMAKE_BINARY_DIR}/qt.cmake")
|
||||
endif()
|
||||
include("${CMAKE_BINARY_DIR}/qt.cmake")
|
||||
endif()
|
||||
|
||||
option(VCPKG_APPLOCAL_DEPS OFF)
|
||||
|
|
45
hifi_qt.py
45
hifi_qt.py
|
@ -34,6 +34,7 @@ endif()
|
|||
system = platform.system()
|
||||
|
||||
qt_found = False
|
||||
system_qt = False
|
||||
|
||||
# Here we handle the 3 possible cases of dealing with Qt:
|
||||
if os.getenv('VIRCADIA_USE_SYSTEM_QT'):
|
||||
|
@ -45,25 +46,11 @@ endif()
|
|||
if system != "Linux":
|
||||
raise Exception("Using the system Qt is only supported on Linux")
|
||||
|
||||
cmake_paths = [ "lib64/cmake", "lib/cmake" ]
|
||||
cmake_path_ok = False
|
||||
|
||||
# This makes the lockFile stuff happy. Needs to be writable.
|
||||
self.path = tempfile.mkdtemp()
|
||||
|
||||
self.fullPath = '/usr'
|
||||
|
||||
# Find the cmake directory
|
||||
for cp in cmake_paths:
|
||||
self.cmakePath = os.path.join(self.fullPath, cp)
|
||||
if os.path.isdir(self.cmakePath):
|
||||
cmake_path_ok = True
|
||||
break
|
||||
|
||||
if not cmake_path_ok:
|
||||
raise Exception("Failed to find cmake directory. Looked under " + self.fullPath + " in " + (', '.join(cmake_paths)))
|
||||
self.path = None
|
||||
self.cmakePath = None
|
||||
|
||||
qt_found = True
|
||||
system_qt = True
|
||||
print("Using system Qt")
|
||||
|
||||
elif os.getenv('VIRCADIA_QT_PATH'):
|
||||
|
@ -98,19 +85,21 @@ endif()
|
|||
qt_found = os.path.isdir(self.fullPath)
|
||||
print("Using a packaged Qt")
|
||||
|
||||
if qt_found:
|
||||
# Sanity check, ensure we have a good cmake directory
|
||||
if not os.path.isdir(os.path.join(self.cmakePath, "Qt5")):
|
||||
raise Exception("Failed to find Qt5 directory under " + self.cmakePath)
|
||||
|
||||
# I'm not sure why this is needed. It's used by hifi_singleton.
|
||||
# Perhaps it stops multiple build processes from interferring?
|
||||
lockDir, lockName = os.path.split(self.path)
|
||||
lockName += '.lock'
|
||||
if not os.path.isdir(lockDir):
|
||||
os.makedirs(lockDir)
|
||||
if not system_qt:
|
||||
if qt_found:
|
||||
# Sanity check, ensure we have a good cmake directory
|
||||
if not os.path.isdir(os.path.join(self.cmakePath, "Qt5")):
|
||||
raise Exception("Failed to find Qt5 directory under " + self.cmakePath)
|
||||
|
||||
self.lockFile = os.path.join(lockDir, lockName)
|
||||
# I'm not sure why this is needed. It's used by hifi_singleton.
|
||||
# Perhaps it stops multiple build processes from interferring?
|
||||
lockDir, lockName = os.path.split(self.path)
|
||||
lockName += '.lock'
|
||||
if not os.path.isdir(lockDir):
|
||||
os.makedirs(lockDir)
|
||||
|
||||
self.lockFile = os.path.join(lockDir, lockName)
|
||||
|
||||
if qt_found:
|
||||
print("Found pre-built Qt5")
|
||||
|
|
17
prebuild.py
17
prebuild.py
|
@ -130,23 +130,26 @@ def main():
|
|||
with timer('NSIS'):
|
||||
hifi_utils.downloadAndExtract(assets_url + '/dependencies/NSIS-hifi-plugins-1.0.tgz', "C:/Program Files (x86)")
|
||||
|
||||
qtInstallPath = ''
|
||||
qtInstallPath = None
|
||||
# If not android, install our Qt build
|
||||
if not args.android:
|
||||
qt = hifi_qt.QtDownloader(args)
|
||||
qtInstallPath = qt.cmakePath
|
||||
with hifi_singleton.Singleton(qt.lockFile) as lock:
|
||||
with timer('Qt'):
|
||||
qt.installQt()
|
||||
qt.writeConfig()
|
||||
|
||||
if qtInstallPath is not None:
|
||||
# qtInstallPath is None when we're doing a system Qt build
|
||||
with hifi_singleton.Singleton(qt.lockFile) as lock:
|
||||
with timer('Qt'):
|
||||
qt.installQt()
|
||||
qt.writeConfig()
|
||||
|
||||
pm = hifi_vcpkg.VcpkgRepo(args)
|
||||
if qtInstallPath != '':
|
||||
if qtInstallPath is not None:
|
||||
pm.writeVar('QT_CMAKE_PREFIX_PATH', qtInstallPath)
|
||||
|
||||
# Only allow one instance of the program to run at a time
|
||||
|
||||
if qtInstallPath != '':
|
||||
if qtInstallPath is not None:
|
||||
pm.writeVar('QT_CMAKE_PREFIX_PATH', qtInstallPath)
|
||||
|
||||
# Only allow one instance of the program to run at a time
|
||||
|
|
Loading…
Reference in a new issue