forked from sammy-tri/drake
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove the workspace entry for find_protobuf_cmake
Using a workspace to identify these files isn't terribly useful, because there isn't great cause for allowing Drake downstreams to replace them with a different copy. Using new_local_repository is a bit tricky to get right so we are trying to avoid it, thus its worth just dropping this down to package-level dependencies instead of a workspace.
- Loading branch information
1 parent
364a1a2
commit 2b49d4d
Showing
7 changed files
with
34 additions
and
31 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# -*- python -*- | ||
|
||
load( | ||
"@drake//tools/install:install.bzl", | ||
"install_files", | ||
) | ||
|
||
package(default_visibility = ["//visibility:public"]) | ||
|
||
install_files( | ||
name = "install", | ||
dest = "lib/cmake/drake/modules", | ||
files = [ | ||
"//third_party:com_kitware_gitlab_cmake_cmake/3.10/Copyright.txt", | ||
"//third_party:com_kitware_gitlab_cmake_cmake/3.10/Modules/FindProtobuf.cmake", | ||
], | ||
allowed_externals = [ | ||
"//third_party:com_kitware_gitlab_cmake_cmake/3.10/Copyright.txt", | ||
], | ||
strip_prefix = [ | ||
# The first strip_prefix match wins; thus, we will end up with: | ||
# - install to "lib/cmake/drake/modules/FindProtobuf.cmake" | ||
"com_kitware_gitlab_cmake_cmake/3.10/Modules", | ||
# - install to "lib/cmake/drake/modules/3.10/Copyright.txt" | ||
"com_kitware_gitlab_cmake_cmake", | ||
], | ||
) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.