Commit 5d2aea9d by Christian Kern

- Check for Doxyfile.in. If not present, do not add doxygen target (fixes internal issue #221)

- Omit doxygen "Makefiles" from tarball (internal issue #221)
- Add executable flag to shell scripts (fixes internal issue #224)
parent 36fac1bc
......@@ -135,8 +135,11 @@ SetInstallPaths()
## DOXYGEN
#
include(CMakeCommon/CreateDoxygenDocumentationTarget.cmake)
CreateDoxygenDocumentationTarget()
if(EXISTS "${EMBB_SOURCE_DIR}/doc/reference/Doxyfile.in")
include(CMakeCommon/CreateDoxygenDocumentationTarget.cmake)
CreateDoxygenDocumentationTarget()
endif()
if (INSTALL_DOCS STREQUAL ON)
install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/doc/
......
......@@ -140,6 +140,10 @@ rsync \
--exclude "doc/tutorial/content" \
--exclude "doc/tutorial/*.tex" \
--exclude "doc/tutorial/*.bib" \
--exclude "doc/reference/*.xml" \
--exclude "doc/reference/*.dox" \
--exclude "doc/reference/*.in" \
--exclude "doc/reference/*.css" \
--exclude "doc/examples/insert_snippets.py" \
--archive --recursive ${d} $MYTMPDIR/${n}
......
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment