summaryrefslogtreecommitdiff
path: root/cpp/docs
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2009-11-13 00:13:42 +0000
committerStephen D. Huston <shuston@apache.org>2009-11-13 00:13:42 +0000
commit1f8f41f6a00d1efeb1da33f386e0d987408cb593 (patch)
tree9b0c8598e2964319c0a69771a5df5ffcf50b019b /cpp/docs
parent6f9250296ea06f6d7058e13f0bebaf78cb699fff (diff)
downloadqpid-python-1f8f41f6a00d1efeb1da33f386e0d987408cb593.tar.gz
Move the kit-building settings out of CMakeLists.txt to a new file, BuildInstallSettings.cmake. Changed the examples's vcproj files to refer to the installed header/lib locations instead of in the source tree locations; also adjusted the names to match directories and look sensible in the solution list.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@835652 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/docs')
-rw-r--r--cpp/docs/api/CMakeLists.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/cpp/docs/api/CMakeLists.txt b/cpp/docs/api/CMakeLists.txt
index d701f3be71..1f9573b98a 100644
--- a/cpp/docs/api/CMakeLists.txt
+++ b/cpp/docs/api/CMakeLists.txt
@@ -32,5 +32,9 @@ if (GEN_DOXYGEN)
install (DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html/
DESTINATION ${QPID_INSTALL_HTMLDIR}
COMPONENT ${QPID_COMPONENT_CLIENT_INCLUDE})
-
+ if (CPACK_GENERATOR STREQUAL "NSIS")
+ set (CPACK_NSIS_MENU_LINKS
+ "${QPID_INSTALL_HTMLDIR}/index.html" "Qpid C++ API Documentation"
+ "https://issues.apache.org/jira/browse/QPID" "Report Qpid Problem")
+ endif (CPACK_GENERATOR STREQUAL "NSIS")
endif (GEN_DOXYGEN)