Build instructions
- Install CMake latest version.
- Go to the project root directory.
- Execute these commands to build the project
mkdir build
cd build
cmake ..
make -j4
- Execute the binary generated in the build directory.
- Directory structure of the project should be as follows.
sanchaar
/src // All the source code, library and utilities
/test // Your test files that will use the library (Also, helpful for someone who uses the library)
/build // Run cmake and make in this directory, this directory should not be commited.
/CMakeLists.txt // List file for cmake
/README.md // Project readme file.