You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ts...@apache.org on 2020/03/10 09:16:57 UTC

[logging-log4cxx] branch master updated: Minor indentation fixes and normalized single vs. double quotes.

This is an automated email from the ASF dual-hosted git repository.

tschoening pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4cxx.git


The following commit(s) were added to refs/heads/master by this push:
     new f2e8c5d  Minor indentation fixes and normalized single vs. double quotes.
f2e8c5d is described below

commit f2e8c5da8ffebc2647fd5c4a8da1a2cc69a22768
Author: Thorsten Schöning <ts...@am-soft.de>
AuthorDate: Tue Mar 10 10:16:51 2020 +0100

    Minor indentation fixes and normalized single vs. double quotes.
---
 src/site/apt/building/cmake.apt | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

diff --git a/src/site/apt/building/cmake.apt b/src/site/apt/building/cmake.apt
index b53374c..94acdf1 100644
--- a/src/site/apt/building/cmake.apt
+++ b/src/site/apt/building/cmake.apt
@@ -49,8 +49,8 @@ $ sudo make install
 | -DBUILD_TESTING=off    | Disable tests.  Tests are enabled by default                                                |
 *------------------------+---------------------------------------------------------------------------------------------+
 
-   Building and testing log4cxx on a Microsoft Windows with APR, Expat and APR-Util built from source
-   extracted into apr-1.7.0, libexpat(from github) and apr-util-1.6.1 in %HOMEPATH%\Libraries.
+  Building and testing log4cxx on a Microsoft Windows with APR, Expat and APR-Util built from source
+  extracted into apr-1.7.0, libexpat(from github) and apr-util-1.6.1 in %HOMEPATH%\Libraries.
 
 +------------+
 $ cd %HOMEPATH%\Libraries
@@ -71,7 +71,7 @@ $ cmake --build buildtrees\log4cxx --target install --config Release
 
   APR and APR-Util are provided by the platform in Mac OS/X 10.5 and iODBC in 10.4.
 
-  cmake can be installed by typing "brew install cmake"
+  cmake can be installed by typing "brew install cmake".
 
 ** Debian:
 
@@ -110,9 +110,10 @@ $ make install
 
 * Using log4cxx in a CMake build
 
-   A log4cxxConfig.cmake and log4cxxConfigVersion.cmake is installed to allow use of find_package() in your CMakeLists.txt.
-   
-   Below are example cmake commands that compile and link 'myApplication" with log4cxx.
+  A log4cxxConfig.cmake and log4cxxConfigVersion.cmake is installed to allow use of find_package()
+  in your CMakeLists.txt.
+
+  Below are example cmake commands that compile and link "myApplication" with log4cxx.
 
 +----+
 find_package(log4cxx 0.11)
@@ -120,5 +121,3 @@ add_executable(myApplication myMain.cpp)
 target_include_directories(myApplication PRIVATE $<TARGET_PROPERTY:log4cxx,INTERFACE_INCLUDE_DIRECTORIES>)
 target_link_libraries( myApplication PRIVATE log4cxx)
 +----+
-
-