-
Notifications
You must be signed in to change notification settings - Fork 646
Add top-level CMake extensions target #12696
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
Merged
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
7c0481e
Update
GregoryComer d562557
Update
GregoryComer 295206e
Update
GregoryComer 1a6d403
Update
GregoryComer 9a9d56c
Update
GregoryComer 9b1cd87
Update
GregoryComer 91792fd
Update
GregoryComer c6d1ff2
Update
GregoryComer 1f9ab62
Update
GregoryComer c3a6a73
Update
GregoryComer 1816540
Update
GregoryComer 8ae3a4e
Update
GregoryComer 09fd5fc
Update
GregoryComer d0e4350
Update
GregoryComer 08760b1
Update
GregoryComer d999dc0
Update
GregoryComer 317799f
Update
GregoryComer 64f4668
Update
GregoryComer 1aac01f
Update
GregoryComer d2bdf8b
Update
GregoryComer fab6b9d
Update
GregoryComer f7d413f
Update
GregoryComer 65087f5
Update
GregoryComer b3944b3
Update
GregoryComer 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
Oops, something went wrong.
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.
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.
can you please include executorch_backends and executorch_extensions in the install() call alongside executorch and executorch_core so that we don't have to coordinate with the EXPORT PR? that should be enough to get it to work no matter which one lands first
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.
I've updated to install these targets. Because of the order of declarations in the file, I can't directly add to the existing executorch / executorch_core install, as it is above many of the backend declarations. To avoid causing a bunch of merge conflicts by rearranging it, I've added an install for these new targets alone. I can add the export directive once #8954 is merged.
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.
if you change an example to use these targets, CI will prevent us from messing it up in the future and give this diff coverage
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.
I've updated executor_runner to use the top-level backends and extensions targets. I'll update examples with the export changes, as well.