diff options
| author | Ted Ross <tross@apache.org> | 2009-05-22 21:40:57 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2009-05-22 21:40:57 +0000 |
| commit | 50caa6a7a68c023a2ceeaeac731923d6e72f72c8 (patch) | |
| tree | d886ec94b01c8b71d9999b2d3dd3bbffabc1764b /qpid/cpp/src/CMakeLists.txt | |
| parent | d14e8a2efc63d83029d599c500ef2e9d34f464f8 (diff) | |
| download | qpid-python-50caa6a7a68c023a2ceeaeac731923d6e72f72c8.tar.gz | |
QPID-1874 - First drop of the second-generation QMF libraries.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@777720 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/CMakeLists.txt')
| -rw-r--r-- | qpid/cpp/src/CMakeLists.txt | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/qpid/cpp/src/CMakeLists.txt b/qpid/cpp/src/CMakeLists.txt index a4affcf010..222ea91c63 100644 --- a/qpid/cpp/src/CMakeLists.txt +++ b/qpid/cpp/src/CMakeLists.txt @@ -578,12 +578,28 @@ set (qmfagent_SOURCES qpid/agent/ManagementAgent.h qpid/agent/ManagementAgentImpl.cpp qpid/agent/ManagementAgentImpl.h + qmf/Agent.cpp ) add_library (qmfagent SHARED ${qmfagent_SOURCES}) -target_link_libraries (qmfagent qpidclient) +target_link_libraries (qmfagent qmfcommon) set_target_properties (qmfagent PROPERTIES VERSION ${qpidc_version}) +set (qmfcommon_SOURCES + qmf/Agent.cpp + qmf/ResilientConnection.cpp + qmf/MessageImpl.cpp + qmf/SchemaImpl.cpp + qmf/ValueImpl.cpp + qmf/ObjectIdImpl.cpp + qmf/ObjectImpl.cpp + qmf/QueryImpl.cpp + ) +add_library (qmfcommon SHARED ${qmfcommon_SOURCES}) +target_link_libraries (qmfcommon qpidclient) +set_target_properties (qmfcommon PROPERTIES + VERSION ${qpidc_version}) + # QMF console library #module_hdr += \ # qpid/console/Agent.h \ |
