airalab / robot_painter

KUKA KR6 R900 painter ROS package stack
Apache License 2.0
12 stars 2 forks source link

Cmake error #8

Closed nakata5321 closed 2 years ago

nakata5321 commented 3 years ago

In local task planner dir in Cmake file missed word "include" after "include_directories"

include_directories(

    ${catkin_INCLUDE_DIRS}
)

Need to add it:

include_directories(
    include
    ${catkin_INCLUDE_DIRS}
)