Container similar to std::vector created as a school project at FIT CTU, specifically in MI-MPC course.
This project uses CMake as its build system and supports C++11 or higher.
-
Create a build directory:
mkdir -p _build cd _build -
Configure the project:
cmake ..
To specify a different C++ standard:
cmake -DCXX_STANDARD=23 ..
-
Build the project:
make -j`nproc`
After building, you can run the test executable:
# From the _build directory
./test_small_vectorIf clang-format is available, you can format the source code:
# From the _build directory
make format