Skip to content

bsnux/cpp-cookbook

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

C++ Cookbook

Simple cookbook for C++.

This repo contains code for quick reference about how to use C++ as a better C. There is no intention to deep dive into all the aspect of the language.

How to build the binary

First of all, these are the requirements:

  • CMake
  • C++ compiler (using clang on MacOS for testing)

Then, you can run the following commands:

cmake .
make

You'll find a new binary living in the bin/ folder.

If you want to get the binary plus the compiled libs, you can run the following command:

make install

Then, you'll find the following directories:

  • bin: Binary
  • lib: Libray object
  • include: Library header file

About

Simple C++ cookbook

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published