blob: 7cceebad8c39a188f759a59441e88fc09e734acd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--- CMakeLists.txt~ 2011-09-01 14:05:32.000000000 -0300
+++ CMakeLists.txt 2011-09-01 14:08:06.000000000 -0300
@@ -64,6 +64,8 @@
add_subdirectory(tools)
if(WITH_DOC)
+ set(DOC_INSTALL_DIR "share/doc/dbusmenu-qt" CACHE PATH "Directory where to install the documentation")
+
configure_file(Doxyfile.in ${CMAKE_BINARY_DIR}/Doxyfile @ONLY)
add_custom_target(doc ALL doxygen
@@ -71,6 +73,6 @@
)
install(DIRECTORY ${CMAKE_BINARY_DIR}/html/
- DESTINATION share/doc/dbusmenu-qt
+ DESTINATION ${DOC_INSTALL_DIR}
)
endif(WITH_DOC)
|