C++ Crash Course is currently in Early Access.
- Follow the instructions in Chapter 1 for setting up a development environment.
- Download and install CMake
- Download and install Boost
- Download and install Git
First, clone this repository:
git clone [email protected]:JLospinoso/ccc
Next, perform an out-of-source CMake build. For example:
cd ccc
git submodule init
git submodule update
mkdir build
cd build
cmake ..
Your build directory should now contain requisite files for building on your current platform. On Windows, for example, you should find a .sln
Visual Studio Solution file. On macOS/Linux, you should find a make
file.