QuaZip Import
-
wow, that's a messy PATH, you have more than 3 versions of mingw and apparently 2 of Qt in there.
beforeset CMAKEGENERATOR="MinGW Makefiles"
runset PATH=C:\Program Files\CMake\bin;C:\Program Files\Git\cmd
.This hould get rid of the junk in there but you should really think about cleaning up that variable permanently from the variable editor removing stuff you don't need.
-
ok, let's start from scratch:
Now I know where you installed stuff so I can do it all in one script.
Open a new cmd window and run the following comands:set PATH=C:\Program Files\CMake\bin;C:\Program Files\Git\cmd set CMAKEGENERATOR="MinGW Makefiles" cd /D D:\dev\Qt\5.14.2\mingw73_64\bin qtenv2.bat cd /D C:\Users\einst\Desktop rmdir /Q /S KArchive mkdir KArchive cd KArchive git clone --depth=1 https://gitlab.com/federicomenaquintero/bzip2.git bzip2src cd .\bzip2src mkdir .\build cd .\build cmake -G %CMAKEGENERATOR% -DENABLE_LIB_ONLY=ON -DCMAKE_BUILD_TYPE="Release" -DCMAKE_INSTALL_PREFIX=../../bzip2 ../ cmake --build . --config Release cmake --build . --target install --config Release cd ..\..\ rmdir /Q /S bzip2src set PATH=%CD%\bzip2;%PATH% git clone --depth=1 https://github.com/madler/zlib.git zlibBuild cd zlibBuild mkdir .\build cd .\build cmake -G %CMAKEGENERATOR% -DCMAKE_INSTALL_PREFIX=../../zlib -DCMAKE_BUILD_TYPE=RELEASE ../ cmake --build . cmake --build . --target install cd ..\..\ rmdir /Q /S zlibBuild set PATH=%CD%\zlib;%PATH% git clone --depth=1 git://anongit.kde.org/extra-cmake-modules ECM cd ECM mkdir .\build cd .\build cmake -G %CMAKEGENERATOR% -DBUILD_TESTING=OFF -DCMAKE_INSTALL_PREFIX=../../ECMbuild -DCMAKE_BUILD_TYPE=RELEASE ../ cmake --build . cmake --build . --target install cd ..\..\ set PATH=%CD%\ECMbuild;%PATH% git clone --depth=1 git://anongit.kde.org/karchive.git KArchive cd KArchive mkdir .\build cd .\build cmake -G %CMAKEGENERATOR% -DBUILD_TESTING=OFF -DCMAKE_DEBUG_POSTFIX=d -DCMAKE_INSTALL_PREFIX=../../KDEAPI -DCMAKE_BUILD_TYPE=DEBUG ../ cmake --build . cmake --build . --target install cmake -G %CMAKEGENERATOR% -DBUILD_TESTING=OFF -DCMAKE_INSTALL_PREFIX=../../KDEAPI -DCMAKE_BUILD_TYPE=RELEASE ../ cmake --build . cmake --build . --target install cd ..\..\ rmdir /Q /S ECMbuild rmdir /Q /S ECM rmdir /Q /S KArchive
-
@VRonin Nah, I'm giving up tbh. I get errors and erros and even then, is it worth it? I mean I just want to download a zip from my application and extract it from memory, but it wouldnt be so hard for the computer that it saves the zip into local storage and then extracts it from there. Also, I have an ETA for my application that I set myself. :/ But thank you so much for your help! I owe you..