Quick Start

Installation

# need gcc or clang
sudo apt-get install build-essential cmake
git clone https://github.com/INJAE/cppm.git
cd cppm
cmake -Bbuild
cd build
cmake --build .
./cppm build install
export PATH="$HOME/.cppm/local/bin:$PATH"

Usage

  • cppm run {options} {sub commands}

  • cppm init {options} {sub commands}

  • cppm cppkg {options} {sub commands}

  • cppm build {options} {sub commands}

  • cppm config {options} {sub commands}

  • cppm update {options} {sub commands}

Generate New Cppm Project

# new test_bin binary package
cppm init -b test_bin
cd test_bin
cppm build
# new test_lib library package
cppm init -l test_lib
cd test_lib
cppm build

Last updated

Was this helpful?