Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix relative path for cmake in usage doc #3890

Merged
merged 1 commit into from
Mar 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ On Mac OS X with Xcode installed, an :file:`.xcodeproj` file will be generated.
To build a `shared library`__ set the ``BUILD_SHARED_LIBS`` CMake variable to
``TRUE``::

cmake -DBUILD_SHARED_LIBS=TRUE ...
cmake -DBUILD_SHARED_LIBS=TRUE ..

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

Expand All @@ -57,7 +57,7 @@ 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 ...
cmake -DCMAKE_POSITION_INDEPENDENT_CODE=TRUE ..


Installing the Library
Expand Down
Loading