cmake-examples/01-basic
2020-02-27 16:17:25 +00:00
..
A-hello-cmake Update to minimum CMake 3.5 2018-03-18 17:23:57 +00:00
B-hello-headers Fix a typo. 2020-01-14 16:27:20 -08:00
C-static-library Fix a typo 2020-02-21 10:33:06 +08:00
D-shared-library Fix typo: teh -> the 2018-09-26 00:08:03 -07:00
E-installing Update to minimum CMake 3.5 2018-03-18 17:23:57 +00:00
F-build-type Update to minimum CMake 3.5 2018-03-18 17:23:57 +00:00
G-compile-flags spelling fixes 2020-01-17 19:48:14 -05:00
H-third-party-library spelling fixes 2020-01-17 19:48:14 -05:00
I-compiling-with-clang spelling fixes 2020-01-17 19:48:14 -05:00
J-building-with-ninja Update to minimum CMake 3.5 2018-03-18 17:23:57 +00:00
K-imported-targets Fix typo: alow → allow 2018-09-26 00:28:05 -07:00
L-cpp-standard fix a typo. 2020-02-16 13:02:13 +08:00
README.adoc spelling fixes 2020-01-17 19:48:14 -05: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 separate 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
  - link:K-imported-targets[imported-targets] - Shows how to link boost using the new imported targets
  - link:L-cpp-standard[cpp-standard] - Shows various methods to set the C++ standard