A program used to wrap source codes of contest into a tidy form.
This project is part of OITools Project.
This project is using the Boost Library.
Run oit-wrap --help.
Requirements:
- GCC (MinGW in Windows)
- CMake
- Boost Library
You may need administrator privileges during the following steps.
Run the following commands under the source directory:
cmake . -DCMAKE_BUILD_TYPE=Release
cmake --build .
cmake --install . --prefix=${install_directory}where ${install_directory} is the directory to install in. If --prefix is not specified, it'll be /usr/local/.
Run the following commands under the source directory:
cmake . -DCMAKE_BUILD_TYPE=Release -G"MinGW Makefiles"
cmake --build .
cmake --install . --prefix=${install_directory}where ${install_directory} is the directory to install in. If --prefix is not specified, it'll be C:/Program Files/OITools/.