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 | 4a9c0dd7a00d7d20d44b9ac0b34e345868ad3421 (patch) | |
tree | 1b9dd7dc0d8907a773a4635feb23b272dc0ede4a /cpp/src/tests/XmlClientSessionTest.cpp | |
parent | 9783f2ec69b9da8f28bd0e671b5dcfcc4b8572c2 (diff) | |
download | qpid-python-4a9c0dd7a00d7d20d44b9ac0b34e345868ad3421.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/qpid@774814 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/XmlClientSessionTest.cpp')
-rw-r--r-- | cpp/src/tests/XmlClientSessionTest.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/cpp/src/tests/XmlClientSessionTest.cpp b/cpp/src/tests/XmlClientSessionTest.cpp index aeb13c292f..b6b8520bd8 100644 --- a/cpp/src/tests/XmlClientSessionTest.cpp +++ b/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: |