mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Concatenate Windows paths correctly
This commit is contained in:
parent
6611d6ef5b
commit
50dfa73244
1 changed files with 2 additions and 2 deletions
|
@ -59,7 +59,7 @@ endif()
|
|||
|
||||
self.path = os.getenv('VIRCADIA_QT_PATH')
|
||||
self.fullPath = self.path
|
||||
self.cmakePath = os.path.join(self.fullPath, 'lib/cmake')
|
||||
self.cmakePath = os.path.join(self.fullPath, 'lib', 'cmake')
|
||||
|
||||
qt_found = True
|
||||
print("Using Qt from " + self.fullPath)
|
||||
|
@ -77,7 +77,7 @@ endif()
|
|||
|
||||
self.path = os.path.expanduser("~/vircadia-files/qt")
|
||||
self.fullPath = os.path.join(self.path, 'qt5-install')
|
||||
self.cmakePath = os.path.join(self.fullPath, 'lib/cmake')
|
||||
self.cmakePath = os.path.join(self.fullPath, 'lib', 'cmake')
|
||||
|
||||
if (not os.path.isdir(self.path)):
|
||||
os.makedirs(self.path)
|
||||
|
|
Loading…
Reference in a new issue