Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 981 Bytes

README.md

File metadata and controls

42 lines (29 loc) · 981 Bytes

cpp-template

C++ template for starting your projects faster

Stargazers Last commit Issues

💾 Getting started

Requirements

  1. C/C++ compiler
  2. CMake & Make

How to start?

  1. Clone the repo
git clone https://github.com/budchirp/cpp-template && cd cpp-template
  1. Change project name in CMakeLists.txt

  2. Compile the code

mkdir build && cd build
cmake .. && make -j$(nproc)

NOTE: If you're using fish, remove the $ sign.

  1. Have fun!
./PROJECT_NAME