diff options
author | Stephen D. Huston <shuston@apache.org> | 2009-12-15 17:07:13 +0000 |
---|---|---|
committer | Stephen D. Huston <shuston@apache.org> | 2009-12-15 17:07:13 +0000 |
commit | fed2f28574fe4ce34de0ec674914416ba16f2956 (patch) | |
tree | ba956f53c77029883713cc987904b09300a39bc1 /cpp/examples/messaging | |
parent | 17450dde553efb74e549493391288af5ee2b6e3b (diff) | |
download | qpid-python-fed2f28574fe4ce34de0ec674914416ba16f2956.tar.gz |
The spout/drain examples have qpid::Options usage which inlines the boost::program_options usage. This requires linking boost_program_options in the examples, not via qpidcommon. Adjust the Windows options to handle this. Resolves QPID-2212.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@890888 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/examples/messaging')
-rw-r--r-- | cpp/examples/messaging/CMakeLists.txt | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/cpp/examples/messaging/CMakeLists.txt b/cpp/examples/messaging/CMakeLists.txt index 88ab81dae9..b2b2bc3e43 100644 --- a/cpp/examples/messaging/CMakeLists.txt +++ b/cpp/examples/messaging/CMakeLists.txt @@ -17,12 +17,10 @@ # under the License. # -# disabling spout & drain on windows until build issues are resolved -# (QPID-2212): -if (NOT MSVC) - add_example(messaging drain) - add_example(messaging spout) -endif (NOT MSVC) +# drain and spout have explicit Boost.program_options usage in them, so be +# sure that lib is linked in. +add_example(messaging drain ${Boost_PROGRAM_OPTIONS_LIBRARY}) +add_example(messaging spout ${Boost_PROGRAM_OPTIONS_LIBRARY}) add_example(messaging queue_receiver) add_example(messaging queue_sender) |