We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
Compiled library has been linked with find_package succesfully, but with add_subdirectory as source not.
Context
In CMakeLists.txt
add_subdirectory(libs/pcl) target_link_library(myprog pcl_common)
cmake --build --target myprog . failed.
cmake --build --target myprog .
Expected behavior
all the neccesary include directories and libraries has been applied, the binary myprog has been compiled succesfully.
myprog
Current Behavior
Unable to compile.
Your Environment (please complete the following information):
Possible Solution
add INTERFACE properties to the pcl targets.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Compiled library has been linked with find_package succesfully, but with add_subdirectory as source not.
Context
In CMakeLists.txt
cmake --build --target myprog .
failed.Expected behavior
all the neccesary include directories and libraries has been applied, the binary
myprog
has been compiled succesfully.Current Behavior
Unable to compile.
Your Environment (please complete the following information):
Possible Solution
add INTERFACE properties to the pcl targets.
The text was updated successfully, but these errors were encountered: