We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9fde5c commit 63f1f7fCopy full SHA for 63f1f7f
cmake/Lucene++Docs.cmake
@@ -138,7 +138,12 @@ IF (ENABLE_DOCS)
138
)
139
ENDIF ( TAR AND GZIP )
140
141
- #install man if it was built
+ #install HTML pages if they were built
142
+ IF ( DOCS_HTML AND NOT WIN32 )
143
+ INSTALL(DIRECTORY ${PROJECT_BINARY_DIR}/doc/html/ DESTINATION share/doc/lucene++-${LUCENE++_VERSION})
144
+ ENDIF ( DOCS_HTML AND NOT WIN32 )
145
+
146
+ #install man pages if they were built
147
IF ( DOCS_MAN )
148
INSTALL(DIRECTORY ${PROJECT_BINARY_DIR}/doc/man/ DESTINATION man)
149
ENDIF ( DOCS_MAN )
0 commit comments