[ 
https://issues.apache.org/jira/browse/ARROW-16751?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17550360#comment-17550360
 ] 

Antoine Pitrou commented on ARROW-16751:
----------------------------------------

We should also give some thought to bumping up the minimum CMake version.
For example Ubuntu 18.04 has CMake 3.10.2, while 20.04 has 3.16.3.

[~kou] What do you think?

> [C++] Unify target include directories
> --------------------------------------
>
>                 Key: ARROW-16751
>                 URL: https://issues.apache.org/jira/browse/ARROW-16751
>             Project: Apache Arrow
>          Issue Type: Improvement
>          Components: C++
>            Reporter: Yibo Cai
>            Priority: Major
>             Fix For: 9.0.0
>
>
> Context: [https://github.com/apache/arrow/pull/13244#discussion_r889780669]
> {{target_include_directories()}} in cmake 3.10 or earlier doesn't support 
> {{INTERFACE}} against {{IMPORTED}} target, so we have to check cmake version 
> like below:
> {code:java}
> if(CMAKE_VERSION VERSION_LESS 3.11)
>   set_target_properties(xsimd PROPERTIES INTERFACE_INCLUDE_DIRECTORIES
>                                          "${XSIMD_INCLUDE_DIR}")
> else()
>   target_include_directories(xsimd INTERFACE "${XSIMD_INCLUDE_DIR}")
> endif()
> {code}
> Above code is duplicated for some targets. There are also some targets (e.g. 
> ucx::ucx) missed the check.
> We can add a function 
> {{arrow_imported_target_interface_include_directories()}} to make it simpler.



--
This message was sent by Atlassian Jira
(v8.20.7#820007)

Reply via email to