cmake-examples/01-basic
2016-02-14 11:35:44 +00:00
..
A-hello-cmake #2 consistent headings 2015-11-29 23:54:44 +00:00
B-hello-headers #2 fix headings and some typos 2015-11-30 00:04:19 +00:00
C-static-library fix toc and headers #3 2015-12-01 11:21:43 +00:00
D-shared-library Update toc and headings #3 2015-12-01 11:24:20 +00:00
E-installing Update toc and headings #3 2015-12-01 11:26:44 +00:00
F-build-type Update toc and headings #3 2015-12-01 11:28:38 +00:00
G-compile-flags Update toc and headings #3 2015-12-01 11:30:23 +00:00
H-third-party-library change boost minimum version to work with travis 2015-12-01 13:48:14 +00:00
I-compiling-with-clang fix some missing links and typos 2016-02-14 11:35:44 +00:00
J-building-with-ninja example for using clang and ninja 2016-02-14 11:24:59 +00:00
README.adoc fix some missing links and typos 2016-02-14 11:35:44 +00:00

= Basic Examples

The basic examples in this directory show how the setup a CMake project,
set compile flags, create and link executables and libraries, and install them.

The examples included are

  - link:A-hello-cmake[hello-cmake]. A hello world example.
  - link:B-hello-headers[hello-headers]. A slightly more complicated hello world example, using seperate source and include folders.
  - link:C-static-library[static-library]. An example using a static library.
  - link:D-shared-library[shared-library]. An example using a shared library.
  - link:E-installing[installing]. Shows how to create a 'make install' target that will install binaries and libraries.
  - link:F-build-type[build-type]. An example showing how to set a default build and optimization flags for your project.
  - link:G-compile-flags[compile-flags]. Shows how to set additional compile flags.
  - link:H-third-party-library[third-party-library]. Shows an example of how to link third party libraries.
  - link:I-compiling-with-clang[compiling-with-clang]. An example of invoking the clang compiler.
  - link:J-building-with-ninja[building-with-ninja] - Shows how to generate ninja build files