1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-11-06 02:52:29 +01:00

Remove Qt openSSL workaround

now that we compile it ourself again
This commit is contained in:
Elias Steurer 2023-11-29 11:10:07 +01:00
parent dd01baa459
commit 7843f63f5a

View File

@ -286,14 +286,6 @@ def package(build_config: BuildConfig):
print("Copy: ", file, build_config.bin_dir)
shutil.copy2(file, build_config.bin_dir)
# Use Qt OpenSSLv3
openSLL_path = Path(
f"{defines.QT_PATH}/Tools/OpenSSLv3/Win_x64/bin").resolve()
for file in openSLL_path.iterdir():
if file.suffix == ".dll" and file.is_file():
print("Copy: ", file, build_config.bin_dir)
shutil.copy2(file, build_config.bin_dir)
if not platform.system() == "Darwin":
file_endings = [".ninja_deps", ".ninja", ".ninja_log", ".lib", ".a", ".exp",
".manifest", ".cmake", ".cbp", "CMakeCache.txt"]