-
Notifications
You must be signed in to change notification settings - Fork 4.2k
ARROW-189: Build 3rd party with ExternalProject. #167
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
Closed
Closed
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -42,6 +42,9 @@ set(ARROW_IPC_SRCS | |
| add_library(arrow_ipc SHARED | ||
| ${ARROW_IPC_SRCS} | ||
| ) | ||
| if(FLATBUFFERS_VENDORED) | ||
| add_dependencies(arrow_ipc flatbuffers_ep) | ||
| endif() | ||
| target_link_libraries(arrow_ipc | ||
| LINK_PUBLIC ${ARROW_IPC_LINK_LIBS} | ||
| LINK_PRIVATE ${ARROW_IPC_PRIVATE_LINK_LIBS}) | ||
|
|
@@ -84,13 +87,23 @@ foreach(FIL ${FBS_SRC}) | |
| list(APPEND ABS_FBS_SRC ${ABS_FIL}) | ||
| endforeach() | ||
|
|
||
| add_custom_command( | ||
| OUTPUT ${FBS_OUTPUT_FILES} | ||
| COMMAND ${FLATBUFFERS_COMPILER} -c -o ${OUTPUT_DIR} ${ABS_FBS_SRC} | ||
| DEPENDS ${ABS_FBS_SRC} | ||
| COMMENT "Running flatc compiler on ${ABS_FBS_SRC}" | ||
| VERBATIM | ||
| ) | ||
| if(FLATBUFFERS_VENDORED) | ||
| add_custom_command( | ||
| OUTPUT ${FBS_OUTPUT_FILES} | ||
| COMMAND ${FLATBUFFERS_COMPILER} -c -o ${OUTPUT_DIR} ${ABS_FBS_SRC} | ||
| DEPENDS ${ABS_FBS_SRC} flatbuffers_ep | ||
| COMMENT "Running flatc compiler on ${ABS_FBS_SRC}" | ||
| VERBATIM | ||
| ) | ||
| else() | ||
| add_custom_command( | ||
| OUTPUT ${FBS_OUTPUT_FILES} | ||
| COMMAND ${FLATBUFFERS_COMPILER} -c -o ${OUTPUT_DIR} ${ABS_FBS_SRC} | ||
| DEPENDS ${ABS_FBS_SRC} | ||
| COMMENT "Running flatc compiler on ${ABS_FBS_SRC}" | ||
| VERBATIM | ||
| ) | ||
|
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. Any issues with setting the dependencies in a cmake variable and having one
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. sure |
||
| endif() | ||
|
|
||
| add_custom_target(metadata_fbs DEPENDS ${FBS_OUTPUT_FILES}) | ||
| add_dependencies(arrow_objlib metadata_fbs) | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Possible to use
ADD_THIRDPARTY_LIBin the ep portion?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.
yep, something else was broken when I switched away from it, it should work