-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Create doc/html directory #333
Conversation
The html directory must exist before the documentation can be built; else, make reports the following error: CMake Error at doc/cmake_install.cmake:31 (file): file INSTALL cannot find "/Users/jeff/pkg/fmtlib/fmt/doc/html". Call Stack (most recent call first): cmake_install.cmake:33 (include) make: *** [install] Error 1
@@ -2,6 +2,7 @@ bin/ | |||
/_CPack_Packages | |||
/doc/doxyxml | |||
/doc/html |
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.
why not just remove this instead?
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.
Maybe that is a better approach. Why was the html directory ignored in the first place? It seemed like it might contain generated files (from *.rst) that should not be committed to version control.
Thanks for the PR, but the |
cmake -DCMAKE_INSTALL_PREFIX:PATH="$top/usr" . This morning, the build work fines for me, though none of the code has On Tue, May 24, 2016 at 9:43 AM, Victor Zverovich notifications@github.com
[image: Orchard Platform] http://www.orchardplatform.com/ Jeffrey Schwab / Senior Software Engineer Orchard Platform [image: Twitter] https://twitter.com/orchardplatform[image: Linkedin] Orchard Blog http://www.orchardplatform.com/blog/ | Marketplace Lending NOTICE TO RECIPIENTS: This communication is confidential and intended for |
The problem is that the |
(cherry picked from commit dc1e36f)
The html directory must exist before the documentation can be built, or
else
make
reports the following error:This commit is just a work-around; I don't know enough CMake to update the build, but it probably should just create the html directory automatically if necessary.