-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Update pre-commit configuration (#28) * Replaced clang-format executable with hook * added recent formatting changes (cherry picked from commit d48bcbd) # Conflicts: # .devcontainer/nouveau/Dockerfile # .devcontainer/nvidia/Dockerfile # .docker/Dockerfile # .github/workflows/ci.yml # .github/workflows/docker.yml # .pre-commit-config.yaml # .vscode/c_cpp_properties.json # .vscode/settings.json * Resolve backport conflicts --------- Co-authored-by: Evan Palmer <[email protected]>
- Loading branch information
1 parent
f029df4
commit e56e7c3
Showing
6 changed files
with
20 additions
and
19 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
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 |
---|---|---|
@@ -1,12 +1,10 @@ | ||
cmake_minimum_required(VERSION 3.8) | ||
project(example_pkg) | ||
|
||
set(THIS_PACKAGE_INCLUDE_DEPENDS | ||
ament_cmake | ||
) | ||
set(THIS_PACKAGE_INCLUDE_DEPENDS ament_cmake) | ||
|
||
foreach(Dependency IN ITEMS ${THIS_PACKAGE_INCLUDE_DEPENDS}) | ||
find_package(${Dependency} REQUIRED) | ||
find_package(${Dependency} REQUIRED) | ||
endforeach() | ||
|
||
ament_package() |