From 372c8a4fffda9f73b1baf47ef0f71751f7b25acb Mon Sep 17 00:00:00 2001 From: Thom Troy Date: Tue, 1 Dec 2015 11:26:44 +0000 Subject: [PATCH] Update toc and headings #3 --- 01-basic/E-installing/README.adoc | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/01-basic/E-installing/README.adoc b/01-basic/E-installing/README.adoc index c73f93b..446aefa 100644 --- a/01-basic/E-installing/README.adoc +++ b/01-basic/E-installing/README.adoc @@ -1,14 +1,10 @@ = Installing - :toc: :toc-placement!: toc::[] - -[[intro]] -Introduction ------------- +# Introduction This example shows how to generate a `make install` target to install files and binaries on your system. This is based on the previous shared library example. @@ -34,13 +30,9 @@ $ tree * src/Hello.cpp - A source file to compile * src/main.cpp - The source file with main -[[concepts]] -Concepts -~~~~~~~~ +# Concepts -[[install]] -Installing -^^^^^^^^^^ +## Installing CMake offers the ability to add a `make install` target to allow a user to install binaries, libraries and other files. The base install location is controlled @@ -97,9 +89,7 @@ If you run the `make install` command as root, the install_manifest.txt file wil be owned by root. ==== -[[building-the-example]] -Building the Example -~~~~~~~~~~~~~~~~~~~~ +# Building the Example [source,bash] ----