From cf0bf6e02d3c344a13379a745831fae7bef05fa3 Mon Sep 17 00:00:00 2001 From: Jeremy <51220084+jeremy-rifkin@users.noreply.github.com> Date: Sat, 2 Sep 2023 21:31:03 -0400 Subject: [PATCH] Specify a tag in readme instructions --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1db0b4f..a6991fb 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ include(FetchContent) FetchContent_Declare( cpptrace GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git - GIT_TAG + GIT_TAG v0.1.1 # ) FetchContent_MakeAvailable(cpptrace) target_link_libraries(your_target cpptrace) @@ -60,7 +60,7 @@ information. ```sh git clone https://github.com/jeremy-rifkin/cpptrace.git -# optional: git checkout +git checkout v0.1.1 mkdir cpptrace/build cd cpptrace/build cmake .. -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=On @@ -96,7 +96,7 @@ you when installing new libraries. ```ps1 git clone https://github.com/jeremy-rifkin/cpptrace.git -# optional: git checkout +git checkout v0.1.1 mkdir cpptrace/build cd cpptrace/build cmake .. -DCMAKE_BUILD_TYPE=Release @@ -114,7 +114,7 @@ To install just for the local user (or any custom prefix): ```sh git clone https://github.com/jeremy-rifkin/cpptrace.git -# optional: git checkout +git checkout v0.1.1 mkdir cpptrace/build cd cpptrace/build cmake .. -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=On -DCMAKE_INSTALL_PREFIX=$HOME/wherever