-
Notifications
You must be signed in to change notification settings - Fork 4.2k
ARROW-17632: [Python][C++] Add details of where libarrow is being found during build #14059
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 3 commits
acc8dc0
694bc8b
06b914b
adf8d28
0db0b42
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 |
|---|---|---|
|
|
@@ -172,3 +172,16 @@ endmacro() | |
| arrow_keep_backward_compatibility(Arrow arrow) | ||
|
|
||
| check_required_components(Arrow) | ||
|
|
||
| function(arrow_show_details PACKAGE_NAME) | ||
| if(NOT ${PACKAGE_NAME}_FIND_QUIETLY) | ||
| string(TOUPPER ${PACKAGE_NAME} package_name_upper) | ||
| message(STATUS "${PACKAGE_NAME} version: ${${package_name_upper}_VERSION}") | ||
|
dhruv9vats marked this conversation as resolved.
Outdated
|
||
| message(STATUS "Found the ${PACKAGE_NAME} shared library: ${${package_name_upper}_SHARED_LIB}") | ||
|
Member
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. Does this work with It seems that we need to pass 2 arguments to this function:
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. The signature now is |
||
| message(STATUS "Found the ${PACKAGE_NAME} import library: ${${package_name_upper}_IMPORT_LIB}") | ||
| message(STATUS "Found the ${PACKAGE_NAME} static library: ${${package_name_upper}_STATIC_LIB}") | ||
| endif() | ||
| endfunction() | ||
|
|
||
| arrow_show_details(arrow) | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.