mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-08 09:08:15 +02:00
Cleanup dbus.devhelp2 make target pathes
Use absolute paths to avoid confusion about where the associated file is located.
This commit is contained in:
parent
e840edec09
commit
cea3a27ed3
1 changed files with 8 additions and 4 deletions
|
|
@ -40,10 +40,14 @@ endif()
|
|||
|
||||
if(DBUS_HAVE_XSLTPROC)
|
||||
add_custom_command(
|
||||
OUTPUT dbus.devhelp2
|
||||
COMMAND ${XSLTPROC_EXECUTABLE} -o dbus.devhelp2 ${CMAKE_CURRENT_SOURCE_DIR}/doxygen_to_devhelp.xsl api/xml/index.xml
|
||||
DEPENDS doxygen_to_devhelp.xsl api/html/index.html
|
||||
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
|
||||
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/dbus.devhelp2
|
||||
COMMAND ${XSLTPROC_EXECUTABLE}
|
||||
-o ${CMAKE_CURRENT_BINARY_DIR}/dbus.devhelp2
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/doxygen_to_devhelp.xsl
|
||||
${CMAKE_CURRENT_BINARY_DIR}/api/xml/index.xml
|
||||
DEPENDS
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/doxygen_to_devhelp.xsl
|
||||
${CMAKE_CURRENT_BINARY_DIR}/api/html/index.html
|
||||
)
|
||||
add_custom_target(devhelp2
|
||||
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/api/html/index.html ${CMAKE_CURRENT_BINARY_DIR}/dbus.devhelp2
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue