Skip to content
Cave of Programming / John Purcell edited this page Oct 20, 2017 · 14 revisions

Welcome to the Cave of Programming Advanced C++ Course Wiki!

Advanced C++ 11

You can find all source code for this course here: here

Thanks to Paul T. for adding CMake.

I've tweaked Paul's CMake files a bit to output the binaries in a bin subdirectory of the projects.

You can use CMake to generate projects for various operating systems and compilers. The source code you see here contains CMake-generated Eclipse 4.7 projects.

They were generated by using the following command after cd-ing into each project subdirectory (on MacOS):

cmake -G "Eclipse CDT4 - Unix Makefiles" -DCMAKE_ECLIPSE_VERSION=4.7 .

If you're not using Eclipse or you're using a different version of Eclipse and you want to import the projects, please check appropriate documentation for CMake, for example: this

For Eclipse, you can import generated projects by using the File menu, Import, "Existing Projects into Workspace".

Clone this wiki locally