git clone https://github.com/kleroop/TechCourse_2022_12.git
cd TechCourse_2022_12
git clone https://github.com/Microsoft/vcpkg
vcpkg/bootstrap-vcpkg.sh #.bat on windows
sudo apt install qtbase5-dev
Download qt installer and check option to install libraries for whatever compiler/toolchain you're using
vcpkg/vcpkg install qt5
-DCMAKE_TOOLCHAIN_FILE="vcpkg/scripts/buildsystems/vcpkg.cmake"
And in case of Qt5 installer add:
-DCMAKE_PREFIX_PATH=<QtInstallDir>/5.x.x/<your_compiler>/lib/cmake
in the "CMake options" field.
File/Settings/Build, Execution, Deployment/CMake -> CMake options
cmake -S . -B <cmake options>
cmake --build build
All project PRs must follow Qt coding style and format each edited file with clang-format before committing.
In order to sync fork with main repo for PR, read how to sync a forked repo.