diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2013-10-28 12:39:56 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2013-10-28 12:39:56 +0000 |
| commit | ba82085930bd21924133a24c6d8e2f19d7570c45 (patch) | |
| tree | 0ef5603d5491bcfa9b13def0aedce088c7c476dc /cpp/docs/api | |
| parent | 77ebb21cdba7a83560abb768032b1e4fa0edc21f (diff) | |
| download | qpid-python-ba82085930bd21924133a24c6d8e2f19d7570c45.tar.gz | |
QPID-5260: Significant tidy up of cmake build
* Move to cmake 2.6 as minimum required version
(2.4 is extremely long in the tooth now)
* Add control over building individual language bindings
* Make settings you don't usually want to change advanced
so they are hidden by default
* Changed to a uniform naming scheme for options:
** Options controlling what to build are all BUILD_
** Options controlling features of he build are ENABLE_
** Options controlling internal aspects of the qpid runtime are QPID_
* Respect the BUILD_TESTING option so that we won't build the
tests unless it is set (it is by default)
* If we don't find the boost_unit_test_framework then don't fail,
just don't build the unit tests (this is motivated by one of the
Apache Jenkins ubuntu builders which has this set up)
* Tidied up some of the detection of external dependencies to make it
more idiomatic cmake (but there is more to do here)
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1536329 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/docs/api')
| -rw-r--r-- | cpp/docs/api/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/docs/api/CMakeLists.txt b/cpp/docs/api/CMakeLists.txt index 828d706b91..79e0d58db5 100644 --- a/cpp/docs/api/CMakeLists.txt +++ b/cpp/docs/api/CMakeLists.txt @@ -17,7 +17,7 @@ # under the License. # -if (GEN_DOXYGEN) +if (BUILD_DOCS) # The user.doxygen.in file was originally written for a # configure-generated situation so makes use of configure names that # need to be set from the CMake equivalents. @@ -42,4 +42,4 @@ if (GEN_DOXYGEN) "${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) +endif (BUILD_DOCS) |
