@@ -156,7 +156,7 @@ include(FetchContent)
156
156
FetchContent_Declare(
157
157
cpptrace
158
158
GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git
159
- GIT_TAG v1.0.1 # <HASH or TAG>
159
+ GIT_TAG v1.0.2 # <HASH or TAG>
160
160
)
161
161
FetchContent_MakeAvailable(cpptrace)
162
162
target_link_libraries(your_target cpptrace::cpptrace)
@@ -1278,7 +1278,7 @@ namespace cpptrace {
1278
1278
1279
1279
# ABI Versioning
1280
1280
1281
- Since cpptrace v1.0.1 , the library uses an inline ABI versioning namespace and all symbols part of the public interface
1281
+ Since cpptrace v1.0.2 , the library uses an inline ABI versioning namespace and all symbols part of the public interface
1282
1282
are secretly under the namespace `cpptrace::v1`. This is done to allow for potential future library evolution in an
1283
1283
ABI-friendly manner.
1284
1284
@@ -1306,7 +1306,7 @@ include(FetchContent)
1306
1306
FetchContent_Declare(
1307
1307
cpptrace
1308
1308
GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git
1309
- GIT_TAG v1.0.1 # <HASH or TAG>
1309
+ GIT_TAG v1.0.2 # <HASH or TAG>
1310
1310
)
1311
1311
FetchContent_MakeAvailable(cpptrace)
1312
1312
target_link_libraries(your_target cpptrace::cpptrace)
@@ -1322,7 +1322,7 @@ information.
1322
1322
1323
1323
``` sh
1324
1324
git clone https://github.com/jeremy-rifkin/cpptrace.git
1325
- git checkout v1.0.1
1325
+ git checkout v1.0.2
1326
1326
mkdir cpptrace/build
1327
1327
cd cpptrace/build
1328
1328
cmake .. -DCMAKE_BUILD_TYPE=Release
@@ -1365,7 +1365,7 @@ you when installing new libraries.
1365
1365
1366
1366
```ps1
1367
1367
git clone https://github.com/jeremy-rifkin/cpptrace.git
1368
- git checkout v1.0.1
1368
+ git checkout v1.0.2
1369
1369
mkdir cpptrace/build
1370
1370
cd cpptrace/build
1371
1371
cmake .. -DCMAKE_BUILD_TYPE=Release
@@ -1383,7 +1383,7 @@ To install just for the local user (or any custom prefix):
1383
1383
1384
1384
``` sh
1385
1385
git clone https://github.com/jeremy-rifkin/cpptrace.git
1386
- git checkout v1.0.1
1386
+ git checkout v1.0.2
1387
1387
mkdir cpptrace/build
1388
1388
cd cpptrace/build
1389
1389
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$HOME /wherever
@@ -1466,7 +1466,7 @@ make install
1466
1466
cd ~ /scratch/cpptrace-test
1467
1467
git clone https://github.com/jeremy-rifkin/cpptrace.git
1468
1468
cd cpptrace
1469
- git checkout v1.0.1
1469
+ git checkout v1.0.2
1470
1470
mkdir build
1471
1471
cd build
1472
1472
cmake .. -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=On -DCPPTRACE_USE_EXTERNAL_LIBDWARF=On -DCMAKE_PREFIX_PATH=~ /scratch/cpptrace-test/resources -DCMAKE_INSTALL_PREFIX=~ /scratch/cpptrace-test/resources
@@ -1486,7 +1486,7 @@ cpptrace and its dependencies.
1486
1486
Cpptrace is available through conan at https://conan.io/center/recipes/cpptrace .
1487
1487
```
1488
1488
[requires]
1489
- cpptrace/1.0.1
1489
+ cpptrace/1.0.2
1490
1490
[generators]
1491
1491
CMakeDeps
1492
1492
CMakeToolchain
0 commit comments