My entry for Advent Of Code 2019.
Use the command line to build the code. cd into the root directory using terminal and run this command:
cmake -H. -B_builds && cmake --build _buildsThe build executables are available in subdirectory '_builds' and runnable.
You can run an executable using
./_builds/01-DecemberYou can run a test using
./_builds/01-DecemberTestor by running
cd _builds
ctest runUse the command line to build the code. cd into the root directory using cmd and run this command:
cmake -H. -B_builds && cmake --build _buildsThe build executables are available in subdirectory '_builds' and runnable.
You can run an executable using
/_builds/01-December.exeNOTE: Since I use macOS dlls for googletest for Windows are not available. You can build them yourself and alter the CMakeLists.txt if you want to run the tests on Windows.