tinyformat
Minimal, type safe printf replacement library for C++
File Explorer
Download Latest Version (.zip)- .gitignore
- .travis.yml
- appveyor.yml
- bloat_test.sh
- CMakeLists.txt
- Makefile
- README.md
- tinyformat.h
- tinyformat_speed_test.cpp
- tinyformat_test.cpp
# Installation Guide
1. Get the code
git clone https://github.com/c42f/tinyformat
Downloads the entire project code from GitHub to your computer.
cd tinyformat
Moves into the project folder you just downloaded.
2. CMake
Medium RecommendedPrerequisites
mkdir build && cd build
Creates a folder to hold the build output and moves into it.
cmake ..
Analyzes the source code and generates build configuration files (must be run inside the build folder).
make
Compiles the code based on the generated build configuration to produce an executable.
Check that an executable was created inside the build folder, then run it directly (e.g. ./build/app_name).
3. Make
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make this bearable tinyformat comes with a set of macros which are used
Compiles the code based on the generated build configuration to produce an executable.
If it finishes without errors, it worked. Try running the generated executable directly.
Pulled directly from this repo's README.
// repository documentation
Was this content helpful?
(0 ratings)
