QuickWatch is a github repository where I will store some of my libraries that I plan to develop towards my own web server mostly from scratch.
Right now, the way you use this solution is to build it and run the unit tests for the various libraries. There is currently 2 main ways to do this:
- Use CTest
- Run individual unit test runners directly (e.g.
build/Uri/test/Debug/UriTests.exe)
- Windows — Visual Studio (MSVC)
- Linux — clang or gcc
- MacOS — Xcode (clang)
- CMake version 3.8 or newer
- C++11 toolchain compatible with CMake for your development platform (e.g. Visual Studio on Windows)
$ mkdir build
$ cd build
$ cmake -G "Visual Studio 16 2019" -A "x64" ..$ cd build
$ cmake --build . --config Release