Skip to content

Commit

Permalink
fix targets (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
bilalkah authored Aug 26, 2024
1 parent 2d8489e commit 6e5008b
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
7 changes: 7 additions & 0 deletions planning/grid_base/astar/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ add_library(
)

target_include_directories(
astar
PUBLIC
${CMAKE_CURRENT_SOURCE_DIR}
${PROJECT_SOURCE_DIR}/planning
)

target_link_directories(
astar
PUBLIC
${CMAKE_CURRENT_SOURCE_DIR}
Expand Down
12 changes: 12 additions & 0 deletions planning/utility/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ target_include_directories(
${CMAKE_CURRENT_SOURCE_DIR}
)

target_link_libraries(
common_grid_base
PUBLIC
common_planning
)

add_library(
common_tree_base
SHARED
Expand All @@ -32,4 +38,10 @@ target_include_directories(
common_tree_base
PUBLIC
${CMAKE_CURRENT_SOURCE_DIR}
)

target_link_libraries(
common_tree_base
PUBLIC
common_planning
)

0 comments on commit 6e5008b

Please sign in to comment.