Skip to content

Commit

Permalink
Fix cmake CMP0167 deprecation warnings
Browse files Browse the repository at this point in the history
This requires boost 1.70+, so 1.74 is the new minimum to match the Ubuntu CI builds
  • Loading branch information
cameronwhite committed Sep 21, 2024
1 parent 8f9fafb commit 19e3cf4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Thanks to the following contributors who worked on this release:
### Changed
- Chord diagrams now display the fret number of the top fret instead of the next fret after it (#408)
- Updated the minimum required version of `RtMidi` to 4.0
- Updated the minimum required version of `boost` to 1.74

### Fixed
- Fixed a bug that caused some preferences such as custom shortcuts to not persist on macOS. Note that all other preferences (such as MIDI settings) are reset by this fix and will need to be manually changed to the desired values (#447).
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Power Tab Editor 2.0 - A powerful cross platform guitar tablature viewer and edi

### Dependencies:
* [CMake](http://www.cmake.org/) >= 3.12
* [Boost](http://www.boost.org/) >= 1.65
* [Boost](http://www.boost.org/) >= 1.74
* algorithm
* date_time
* endian
Expand Down
2 changes: 1 addition & 1 deletion cmake/third_party/boost.cmake
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Creates the imported targets Boost::headers, Boost::date_time, etc
find_package(
Boost 1.65 REQUIRED
Boost 1.74 CONFIG REQUIRED
COMPONENTS
date_time
iostreams
Expand Down

0 comments on commit 19e3cf4

Please sign in to comment.