diff options
author | Ralf Habacker <ralf.habacker@freenet.de> | 2019-01-24 08:11:00 +0100 |
---|---|---|
committer | Ralf Habacker <ralf.habacker@freenet.de> | 2019-01-24 09:07:27 +0100 |
commit | 5972bbe382979b08deee398650e406666fe2084c (patch) | |
tree | 993b0811ce3fa0bcc0069db899db4e9596aedd4c /doc | |
parent | 3927b1dd397908212f205e9300ce694e3482df72 (diff) | |
download | dbus-5972bbe382979b08deee398650e406666fe2084c.tar.gz |
Remove spaces between cmake command and opening bracket
Diffstat (limited to 'doc')
-rw-r--r-- | doc/CMakeLists.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index 6f6ffe25..0447f9fb 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -10,8 +10,8 @@ if(DOXYGEN_EXECUTABLE) option(DBUS_ENABLE_DOXYGEN_DOCS "build DOXYGEN documentation (requires Doxygen)" ON) endif(DOXYGEN_EXECUTABLE) -if (DBUS_ENABLE_DOXYGEN_DOCS) - set (top_srcdir ${CMAKE_SOURCE_DIR}) +if(DBUS_ENABLE_DOXYGEN_DOCS) + set(top_srcdir ${CMAKE_SOURCE_DIR}) configure_file(../Doxyfile.in ${CMAKE_BINARY_DIR}/Doxyfile ) add_custom_command( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/api/html/index.html @@ -28,7 +28,7 @@ if (DBUS_ENABLE_DOXYGEN_DOCS) ) add_dependencies(doc devhelp2) install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/api/html/ DESTINATION ${CMAKE_INSTALL_DATADIR}/doc/dbus/api) -endif (DBUS_ENABLE_DOXYGEN_DOCS) +endif(DBUS_ENABLE_DOXYGEN_DOCS) find_program(XSLTPROC_EXECUTABLE xsltproc) if(XSLTPROC_EXECUTABLE) @@ -79,9 +79,9 @@ macro(DOCBOOK _sources _format) DEPENDS ${_infile} WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} ) - endif () + endif() add_dependencies(xmldoc ${_outname}) - if (${_format} STREQUAL "man") + if(${_format} STREQUAL "man") install(FILES ${_outfile} DESTINATION ${CMAKE_INSTALL_DATADIR}/man/man1) else() install(FILES ${_outfile} DESTINATION ${CMAKE_INSTALL_DATADIR}/doc/dbus) @@ -152,7 +152,7 @@ docbook(${CMAKE_CURRENT_BINARY_DIR}/dbus-update-activation-environment.1.xml htm configure_file(index.html.in ${CMAKE_CURRENT_BINARY_DIR}/index.html) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/index.html DESTINATION ${CMAKE_INSTALL_DATADIR}/doc/dbus) -set (EXTRA_DIST +set(EXTRA_DIST busconfig.dtd introspect.dtd introspect.xsl |