C++ Qt5 multi-threaded application for checking HTTP response status of urls.
- C++ compiler (>=C++17)
- CMake (>=3.15)
Libraries/frameworks:
Clone repository:
git clone https://github.com/fuzzy69/urlchecker.git
Navigate to project directory:
cd /urlchecker
Download dependencies:
git submodule update --init --recursive
Create build directory somewhere (preferably out of project directory) and navigate into it:
mkdir build
cd build
Build project by passing the full path to a cloned urlchecker project:
- *nix
cmake <YOUR PATH>/urlchecker
make
- Windows
cmake.exe <YOUR PATH>/urlchecker
cmake.exe --build . --config Debug
Compiled application executable and required files are located in bin directory. Run executable with:
bin/urlchecker/urlchecker
Run tests with:
bin/tests/testcommon
bin/tests/testcore
bin/tests/testtools
bin/tests/testwidgets