diff options
author | Andrew Stitcher <astitcher@apache.org> | 2009-05-14 15:19:56 +0000 |
---|---|---|
committer | Andrew Stitcher <astitcher@apache.org> | 2009-05-14 15:19:56 +0000 |
commit | a05dff2847b981cda1f584398f46cbc790afec4f (patch) | |
tree | e0ef23ecc71ea5cd19f8201e549b3efbe1834aca /qpid/cpp/src/tests/XmlClientSessionTest.cpp | |
parent | 70c71154f9daa923734c473cc6966cdcbb01408f (diff) | |
download | qpid-python-a05dff2847b981cda1f584398f46cbc790afec4f.tar.gz |
More work on cmake:
Make tests build on Linux
Fix XML tests to run
Fix cmake installed locations for modules/config files
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@774814 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/XmlClientSessionTest.cpp')
-rw-r--r-- | qpid/cpp/src/tests/XmlClientSessionTest.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/XmlClientSessionTest.cpp b/qpid/cpp/src/tests/XmlClientSessionTest.cpp index aeb13c292f..b6b8520bd8 100644 --- a/qpid/cpp/src/tests/XmlClientSessionTest.cpp +++ b/qpid/cpp/src/tests/XmlClientSessionTest.cpp @@ -52,7 +52,11 @@ using std::string; using std::cout; using std::endl; -Shlib shlib("../.libs/xml.so"); +#if defined (QPID_MODULE_SUFFIX) + Shlib shlib("../xml" QPID_MODULE_SUFFIX); +#else + Shlib shlib("../.libs/xml.so"); +#endif class SubscribedLocalQueue : public LocalQueue { private: |