/unitscpp

small units of code to understand C++ better

Primary LanguageC++MIT LicenseMIT

Units - C++

small units of code to understand C++ better

Project Structure

Directories Description
UNITSCPP Repository Root
└──units code directory
  └──{project 1}
  └──{project 2}
  └── ...
└──examples examples directory
  └──{example 1}
  └──{example 2}
  └── ...
├── include include installed here
├── lib lib installed here
├── bin bin for running examples
  └──{example 1 binary}
  └──{example 2 binary}
  └── ...

Using the repository

# Download the source from github.com
$ git clone https://github.com/PranavHun/unitscpp.git


# Clean build the code or examples
$ ./build_all.sh [examples]


# Configure Cmake
$ ./config.sh [examples]

# Build the targets
$ ./build.sh [examples]

# Install the targets
$ ./install.sh [examples]

# remove the build targets
$ ./clean.sh [examples]

# test
$ ./test.sh