Very basic Base64 encoding/decoding solution in C++.
- Google Test for the Unit Tests
To build the solution, navigate to the cloned GitHub directory and run:
mkdir -p build
cd build
cmake ..
make
To build the application with tests:
cmake -S . -B build -DBUILD_TESTS=true
cmake --build build
Google Test must be installed & configured to build & run unit tests.