-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
New issue
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
When configuring with WITH_DOCS, but Doxygen is not available, prevent generation. #2516
When configuring with WITH_DOCS, but Doxygen is not available, prevent generation. #2516
Conversation
doc/doxygen/CMakeLists.txt
Outdated
@@ -2,6 +2,8 @@ if(WITH_DOCS) | |||
find_package(Doxygen) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What about actually passing here REQUIRED
to the find package command?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems better. I modify the code.
b43d534
to
a488c50
Compare
Seems there is a failed check in travis. gcc build works but
The gcc build appears to build much less than the clang build. It's strange. Making doxygen required in case of building docs can't possibly change dramatically the items built. Any clue? |
It's a Travis CI problem. Disregard it. |
You seemed to have pushed a new commit after my comment, but nothing was modified. |
a488c50
to
89112ab
Compare
Thanks for reporting wrong commit pushed. I just pushed the correct commit, rebased on latest PointCloudLibrary/pcl master. Tested here:
Seems all good for me. |
Thank you for contributing. |
…t generation.