2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-08-31 06:35:14 +00:00

[Dev] Use Libraries64 folder instead of Libraries/win64 on Windows

This commit is contained in:
RadRussianRus
2022-09-11 06:32:40 +03:00
committed by Eric Kotato
parent dd0a776729
commit 40951977b0
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@@ -1,4 +1,5 @@
/out/
/out64/
Debug/
Release/
/ThirdParty/

View File

@@ -33,7 +33,7 @@ if win and not win32 and not win64:
os.chdir(scriptPath + '/../../../..')
pathSep = ';' if win else ':'
libsLoc = 'Libraries' if not win64 else (os.path.join('Libraries', 'win64'))
libsLoc = 'Libraries' if not win64 else 'Libraries64'
keysLoc = 'cache_keys'
rootDir = os.getcwd()