Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
Levi-Armstrong committed Sep 5, 2023
1 parent 5a7f6e3 commit c3c5e3e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
7 changes: 7 additions & 0 deletions .cmake-format
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,13 @@ with section("parse"):
'EXCLUDE': '*',
}
},
'install_targets': {
'pargs': {'nargs': 0},
'kwargs': {
'TARGETS': '*',
'COMPONENT': '?',
}
},
'cpack': {
'pargs': {'nargs': 0},
'kwargs': {
Expand Down
12 changes: 2 additions & 10 deletions tesseract_collision/bullet/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,7 @@ if(${HACD_LIBRARY})
target_include_directories(
${PROJECT_NAME}_hacd_convex_decomposition PUBLIC "$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>"
"$<INSTALL_INTERFACE:include>")
install_targets(
TARGETS
${PROJECT_NAME}_hacd_convex_decomposition
COMPONENT
bullet)
install_targets(TARGETS ${PROJECT_NAME}_hacd_convex_decomposition COMPONENT bullet)
endif()

if(NOT MSVC)
Expand Down Expand Up @@ -112,11 +108,7 @@ if(NOT MSVC)

list(APPEND PACKAGE_LIBRARIES create_convex_hull)

install_targets(
TARGETS
create_convex_hull
COMPONENT
bullet)
install_targets(TARGETS create_convex_hull COMPONENT bullet)
endif()

# Add factory library so contact_managers_factory can find these factories by defauult
Expand Down

0 comments on commit c3c5e3e

Please sign in to comment.