From f10dd03bcae27d435c5cfc11fc4d6c70973eba1e Mon Sep 17 00:00:00 2001 From: Adnan Yunus Date: Mon, 19 Oct 2020 13:26:31 -0700 Subject: [PATCH] linebreaks --- doc/usage.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/usage.rst b/doc/usage.rst index 7dce0ffb..435afd53 100644 --- a/doc/usage.rst +++ b/doc/usage.rst @@ -53,8 +53,9 @@ To build a `shared library`__ set the ``BUILD_SHARED_LIBS`` CMake variable to __ http://en.wikipedia.org/wiki/Library_%28computing%29#Shared_libraries -To build a `static library` with position independent code (required if the main consumer of the fmt library is a shared library i.e. a Python extension) set the ``CMAKE_POSITION_INDEPENDENT_CODE`` CMake variable to -``TRUE``:: +To build a `static library` with position independent code (required if the main +consumer of the fmt library is a shared library i.e. a Python extension) set the +``CMAKE_POSITION_INDEPENDENT_CODE`` CMake variable to ``TRUE``:: cmake -DCMAKE_POSITION_INDEPENDENT_CODE=TRUE ...