Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 469 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 469 Bytes

Base64_Cpp

Very basic Base64 encoding/decoding solution in C++.

Dependencies

  • Google Test for the Unit Tests

Building

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.