catkin_package INCLUDE_DIR set CFlags to <package>.pc under devel/ but not set CFlags to installspace
Hi,
I have a package with
catkin_project(
INCLUDE_DIRS include1 include2
)
and this generate <package>.pc under devel (./devel/lib/pkgconfig/<package>.pc) that contians
Cflags: -I.../include1 -I../include2
but <packge>.pc under build/..../catkin_generated/installspace/<package>.pc becomes
Cflags: -I/tmp/catkin_ws/install/include
It this expected behavior? Why it is not
Cflags -I/tmp/catkin_ws/install/include/<package>/include1 -I/tmp/catkin_ws/install/include/<package>/include2