BoosterSeat  0.1
A C++ library that includes common utilities that are used in other projects.
BoosterSeat Documentation

it's just like boost, but has none of the features

This is just my set of helpful C++ utilities that I use across many projects.


Modules


Using with CMake

Clone the repo into a project:

cd your_project/third_party_libs
git clone git@github.com:joshua-jerred/Boost_erSeat.git

Add the following to your_project/CMakeLists.txt:

add_subdirectory(third_party_libs/Boost_erSeat)
target_link_libraries(<your_target> BoosterSeat)

Headers are taken care of for you, for example:

int main() {
bst::sleep(1000);
}
void sleep(int32_t milliseconds)
Definition: sleep.hpp:7
int main()
Definition: visual_tests.cpp:10