cmake-examples/01-basic/README.md

605 B

Basic Examples

The basic examples in this directory show how the setup a cmake project and create an executable. The examples included are

  • hello-cmake. A hello world example.
  • hello-headers. A slighly more complicated hello world example, with using Hello class and seperate source and include folders.
  • shared-library. An example using a shared library.
  • static-library. An example using a static library.
  • installing. Shows how to create a 'make install' target to install the binaries and libraries
  • build-type. An example showing how to set a default build type of your project.