You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pkg-config with pcl needs to be informed of each individual library. It's quite bothersome
Expected behavior
pkg-config --cflags pcl should return the cflags for all PCL libraries
Current Behavior
Need to call pkg-config --cflags pcl_common and so on
Additional context
Every module's CMakeLists.txt creates a pkg-config. This can be done by creating a fake module which depends on all built modules and then generates a pkg-config file
The text was updated successfully, but these errors were encountered:
Could you describe your use case a bit more? Why are you calling pkg-config/ how are you using the cflags? Is it not possible to use cmake in your situation?
pkg-config
with pcl needs to be informed of each individual library. It's quite bothersomeExpected behavior
pkg-config --cflags pcl
should return the cflags for all PCL librariesCurrent Behavior
Need to call
pkg-config --cflags pcl_common
and so onAdditional context
Every module's CMakeLists.txt creates a pkg-config. This can be done by creating a fake module which depends on all built modules and then generates a pkg-config file
The text was updated successfully, but these errors were encountered: