Compile fritzing 1.0.2

I’ve been trying to compile fritzing by myself and resolved bugs so far but I cannot find a way to get through this one
I’ve built quazip in the folder using:

cd quazip-1.4

dir …\zlib-1.3\build64\Release\zlib.lib

set Qt6_DIR=C:\Qt\6.5.3\msvc2019_64
dir %Qt6_DIR%

rmdir /S /Q build64
mkdir build64
cmake -S . -B build64 ^
-G “Visual Studio 16 2019” -A x64 ^
-D QUAZIP_QT_MAJOR_VERSION=6 ^
-D CMAKE_INSTALL_PREFIX=…\quazip_qt6 ^
-D QUAZIP_USE_QT_ZLIB=OFF ^
-D ZLIB_INCLUDE_DIR=…\zlib-1.3 ^
-D ZLIB_LIBRARY=%cd%..\zlib-1.3\build64\Release\zlib.lib

cmake --build build64 --config Release
cmake --build build64 --config Release --target install

And I’m still getting “quazip.h’: No such file or directory”,

Any help or where should I look?