diff options
author | Gordon Sim <gsim@apache.org> | 2009-11-20 08:37:09 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2009-11-20 08:37:09 +0000 |
commit | 61bf5e787d46be6e82c825777d0dec78b6844c8f (patch) | |
tree | 6b2f39fb889f49b4fc62098e534d88f28c893af7 | |
parent | b43f8d8109e724ee55bcb09a0a41655657c7387d (diff) | |
download | qpid-python-61bf5e787d46be6e82c825777d0dec78b6844c8f.tar.gz |
QPID-2212: Attempt to fix windows build of drain/spout examples by linking in boost program options
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@882447 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | cpp/examples/messaging/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/examples/messaging/CMakeLists.txt b/cpp/examples/messaging/CMakeLists.txt index 2274474d31..d1f9db133d 100644 --- a/cpp/examples/messaging/CMakeLists.txt +++ b/cpp/examples/messaging/CMakeLists.txt @@ -17,8 +17,8 @@ # under the License. # -add_example(messaging drain) -add_example(messaging spout) +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) |