-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
[C++] Improve *_SOURCE CMake variables naming #26842
Comments
Kouhei Sutou / @kou: |
Todd Farmer / @toddfarmer: |
Apache Arrow JIRA Bot: |
We may want to enable https://cmake.org/cmake/help/latest/policy/CMP0144.html when we work on this. |
CMP0144 requires CMake 3.27 so we have to wait? |
We don't need to wait CMake 3.27. We can emulate this easily by something like: if(NOT POLICY CMP0144)
if(DEFINED BOOST_ROOT AND NOT DEFINED Boost_ROOT)
set(Boost_ROOT ${BOOST_ROOT})
endif()
endif() |
That sounds good! |
#8908 (comment)
#8908 (comment)
#8908 (comment)
#8908 (comment)
Reporter: Kouhei Sutou / @kou
Assignee: Kouhei Sutou / @kou
Note: This issue was originally created as ARROW-10911. Please see the migration documentation for further details.
The text was updated successfully, but these errors were encountered: