<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/qpid-python.git/qpid/cpp/CMakeLists.txt, branch 0.28</title>
<subtitle>git.apache.org: qpid.git
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/qpid-python.git/'/>
<entry>
<title>QPID-5646: Detect and build against earlier versions of Proton.</title>
<updated>2014-03-27T16:29:15+00:00</updated>
<author>
<name>Andrew Stitcher</name>
<email>astitcher@apache.org</email>
</author>
<published>2014-03-27T16:29:15+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/qpid-python.git/commit/?id=363725877de09bb7912fb2f743d9547f1fbaca31'/>
<id>363725877de09bb7912fb2f743d9547f1fbaca31</id>
<content type='text'>
- This should detect any version of Proton that either uses
  pkg-config or native cmake config files.

git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/0.28@1582379 13f79535-47bb-0310-9956-ffa450edef68
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- This should detect any version of Proton that either uses
  pkg-config or native cmake config files.

git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/0.28@1582379 13f79535-47bb-0310-9956-ffa450edef68
</pre>
</div>
</content>
</entry>
<entry>
<title>QPID-5237: Self-contained C++ source distribution</title>
<updated>2013-10-29T21:24:26+00:00</updated>
<author>
<name>Andrew Stitcher</name>
<email>astitcher@apache.org</email>
</author>
<published>2013-10-29T21:24:26+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/qpid-python.git/commit/?id=de9e2692a0ddfdef4dac98334953019d6887902f'/>
<id>de9e2692a0ddfdef4dac98334953019d6887902f</id>
<content type='text'>
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1536900 13f79535-47bb-0310-9956-ffa450edef68
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1536900 13f79535-47bb-0310-9956-ffa450edef68
</pre>
</div>
</content>
</entry>
<entry>
<title>QPID-5262: Install debug versions of MS runtime DLLs</title>
<updated>2013-10-28T12:40:02+00:00</updated>
<author>
<name>Andrew Stitcher</name>
<email>astitcher@apache.org</email>
</author>
<published>2013-10-28T12:40:02+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/qpid-python.git/commit/?id=b3f03b13b0ccb9ace30118d2aeb5e9fcbddfdd03'/>
<id>b3f03b13b0ccb9ace30118d2aeb5e9fcbddfdd03</id>
<content type='text'>
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1536331 13f79535-47bb-0310-9956-ffa450edef68
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1536331 13f79535-47bb-0310-9956-ffa450edef68
</pre>
</div>
</content>
</entry>
<entry>
<title>QPID-5260: Significant tidy up of cmake build</title>
<updated>2013-10-28T12:39:56+00:00</updated>
<author>
<name>Andrew Stitcher</name>
<email>astitcher@apache.org</email>
</author>
<published>2013-10-28T12:39:56+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/qpid-python.git/commit/?id=265821ba0b9ea2eb77ceb9158ceb83fffe12bc8f'/>
<id>265821ba0b9ea2eb77ceb9158ceb83fffe12bc8f</id>
<content type='text'>
* 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@1536329 13f79535-47bb-0310-9956-ffa450edef68
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* 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@1536329 13f79535-47bb-0310-9956-ffa450edef68
</pre>
</div>
</content>
</entry>
<entry>
<title>QPID-4940: Remove obsolete qmf code</title>
<updated>2013-07-26T21:31:09+00:00</updated>
<author>
<name>Andrew Stitcher</name>
<email>astitcher@apache.org</email>
</author>
<published>2013-07-26T21:31:09+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/qpid-python.git/commit/?id=71798082f1d34e3d1a21cdcaa9128e06906d8e4e'/>
<id>71798082f1d34e3d1a21cdcaa9128e06906d8e4e</id>
<content type='text'>
- Remove qmf1 engine code
- Remove qmf1 language bindings
- Remove qmf1 agent code (it depends on engine)
- Fix up cmake to build

git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1507464 13f79535-47bb-0310-9956-ffa450edef68
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Remove qmf1 engine code
- Remove qmf1 language bindings
- Remove qmf1 agent code (it depends on engine)
- Fix up cmake to build

git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1507464 13f79535-47bb-0310-9956-ffa450edef68
</pre>
</div>
</content>
</entry>
<entry>
<title>QPID-4955: Fix to previous commit</title>
<updated>2013-06-27T03:41:13+00:00</updated>
<author>
<name>Andrew Stitcher</name>
<email>astitcher@apache.org</email>
</author>
<published>2013-06-27T03:41:13+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/qpid-python.git/commit/?id=27827048b69f356f74182512220d9378c38eb194'/>
<id>27827048b69f356f74182512220d9378c38eb194</id>
<content type='text'>
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1497203 13f79535-47bb-0310-9956-ffa450edef68
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1497203 13f79535-47bb-0310-9956-ffa450edef68
</pre>
</div>
</content>
</entry>
<entry>
<title>QPID-4955: CMake install puts config files in the wrong place</title>
<updated>2013-06-26T22:41:36+00:00</updated>
<author>
<name>Andrew Stitcher</name>
<email>astitcher@apache.org</email>
</author>
<published>2013-06-26T22:41:36+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/qpid-python.git/commit/?id=87fbbcc9b363519e80a8b22fca9b4ca8909a2062'/>
<id>87fbbcc9b363519e80a8b22fca9b4ca8909a2062</id>
<content type='text'>
- Also removed ability to specify daemon and client config file
  locations individually as that isn't straightforwardly possible
  with the CMake install capability.

git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1497148 13f79535-47bb-0310-9956-ffa450edef68
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Also removed ability to specify daemon and client config file
  locations individually as that isn't straightforwardly possible
  with the CMake install capability.

git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1497148 13f79535-47bb-0310-9956-ffa450edef68
</pre>
</div>
</content>
</entry>
<entry>
<title>QPID-4889: Only installs the Swig descriptors in /usr/include</title>
<updated>2013-05-24T18:19:54+00:00</updated>
<author>
<name>Darryl L. Pierce</name>
<email>mcpierce@apache.org</email>
</author>
<published>2013-05-24T18:19:54+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/qpid-python.git/commit/?id=e1be68d273e4e6b7a7915cc91219ce583c1e88d7'/>
<id>e1be68d273e4e6b7a7915cc91219ce583c1e88d7</id>
<content type='text'>
Previously the files were being installed under both /usr/include
and also /usr/share/doc/qpid. Files are now installed only once.

git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1486148 13f79535-47bb-0310-9956-ffa450edef68
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously the files were being installed under both /usr/include
and also /usr/share/doc/qpid. Files are now installed only once.

git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1486148 13f79535-47bb-0310-9956-ffa450edef68
</pre>
</div>
</content>
</entry>
<entry>
<title>QPID-4737: Fix cmake "make package"</title>
<updated>2013-04-11T14:08:46+00:00</updated>
<author>
<name>Alan Conway</name>
<email>aconway@apache.org</email>
</author>
<published>2013-04-11T14:08:46+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/qpid-python.git/commit/?id=b2e27a4dfbd42664b85d741498037a69ce892144'/>
<id>b2e27a4dfbd42664b85d741498037a69ce892144</id>
<content type='text'>
"make package" was attempting to install files with absolute paths to the final
install location, rather than the temporary install dir.

Trivial 1 line fix: set(CPACK_SET_DESTDIR ON)

git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1466895 13f79535-47bb-0310-9956-ffa450edef68
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
"make package" was attempting to install files with absolute paths to the final
install location, rather than the temporary install dir.

Trivial 1 line fix: set(CPACK_SET_DESTDIR ON)

git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1466895 13f79535-47bb-0310-9956-ffa450edef68
</pre>
</div>
</content>
</entry>
<entry>
<title>QPID-4687: Add uninstall make target to cmake build</title>
<updated>2013-04-01T16:47:10+00:00</updated>
<author>
<name>Alan Conway</name>
<email>aconway@apache.org</email>
</author>
<published>2013-04-01T16:47:10+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/qpid-python.git/commit/?id=36b03a47bc92662cfe8b09f094884e2c223f5205'/>
<id>36b03a47bc92662cfe8b09f094884e2c223f5205</id>
<content type='text'>
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1463202 13f79535-47bb-0310-9956-ffa450edef68
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1463202 13f79535-47bb-0310-9956-ffa450edef68
</pre>
</div>
</content>
</entry>
</feed>
