Skip to content

Commit

Permalink
Add diff for manual cpptrace changes
Browse files Browse the repository at this point in the history
  • Loading branch information
0blu committed Nov 5, 2024
1 parent 9ece52c commit 2dc1e47
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion dep/cpptrace/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,25 @@ README.md -> README_original.md
```

## Manual changes
Changed `cmake_minimum_required` to `3.12`.
### Changed `cmake_minimum_required` to `3.12`.
```diff
--- a/dep/cpptrace/CMakeLists.txt
+++ b/dep/cpptrace/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.14)
+cmake_minimum_required(VERSION 3.12)
```

### Adjusted InstallRules for older cmake version
```diff
--- a/dep/cpptrace/cmake/InstallRules.cmake
+++ b/dep/cpptrace/cmake/InstallRules.cmake
@@ -25,6 +25,7 @@ install(
COMPONENT ${package_name}-development
INCLUDES #
DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}"
+ ARCHIVE DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}"
)

# create config file that points to targets file
```

0 comments on commit 2dc1e47

Please sign in to comment.