-
Notifications
You must be signed in to change notification settings - Fork 57
replace boost::filesystem with std::filesystem #161
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,6 +8,6 @@ vcpkg install \ | |
| imath:x64-windows \ | ||
| boost-system:x64-windows \ | ||
| boost-foreach:x64-windows \ | ||
| boost-filesystem:x64-windows \ | ||
| boost-system:x64-windows \ | ||
|
||
| boost-test:x64-windows \ | ||
| boost-property-tree:x64-windows | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,10 +6,9 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_INSTALL_PREFIX}/share/CMake" | |
| find_package ( AcesContainer CONFIG REQUIRED ) | ||
| find_package ( Eigen3 CONFIG REQUIRED ) | ||
| find_package ( Imath CONFIG REQUIRED ) | ||
| find_package ( Boost REQUIRED | ||
| find_package ( Boost CONFIG REQUIRED | ||
| COMPONENTS | ||
| system | ||
| filesystem | ||
| unit_test_framework | ||
| ) | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What do you of this: The goal is to prefer CMake package config (vcpkg/Conan), fall back to FindBoost for distro installs
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not too worried about this. Boost is going away in the next couple of PRs. Definitely before the next release. |
||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -25,7 +25,6 @@ endif() | |
| find_package ( Boost REQUIRED | ||
| COMPONENTS | ||
| system | ||
| filesystem | ||
| unit_test_framework | ||
| ) | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we want to make it blow up if 17 requirement is not met:
On Line 3:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, why not. I'm using some of C++20 features in my v2 branch, so this is getting complicated.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done