Skip to content

Commit df6e7b2

Browse files
authored
Fix relative path for cmake in usage doc (#3890)
1 parent c816fa6 commit df6e7b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/usage.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ On Mac OS X with Xcode installed, an :file:`.xcodeproj` file will be generated.
4848
To build a `shared library`__ set the ``BUILD_SHARED_LIBS`` CMake variable to
4949
``TRUE``::
5050

51-
cmake -DBUILD_SHARED_LIBS=TRUE ...
51+
cmake -DBUILD_SHARED_LIBS=TRUE ..
5252

5353
__ https://en.wikipedia.org/wiki/Library_%28computing%29#Shared_libraries
5454

@@ -57,7 +57,7 @@ To build a `static library` with position independent code (required if the main
5757
consumer of the fmt library is a shared library i.e. a Python extension) set the
5858
``CMAKE_POSITION_INDEPENDENT_CODE`` CMake variable to ``TRUE``::
5959

60-
cmake -DCMAKE_POSITION_INDEPENDENT_CODE=TRUE ...
60+
cmake -DCMAKE_POSITION_INDEPENDENT_CODE=TRUE ..
6161

6262

6363
Installing the Library

0 commit comments

Comments
 (0)