summaryrefslogtreecommitdiff
path: root/qpid/cpp/examples/messaging
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2009-12-15 08:23:19 +0000
committerGordon Sim <gsim@apache.org>2009-12-15 08:23:19 +0000
commite8ac34d6643375463dd59d7d614cddb59a01d5a6 (patch)
tree0c887e7da691bf76df0c985559f7a95c92f74817 /qpid/cpp/examples/messaging
parent530d4acca2ed88f9164aa25c15f95139c0e253d8 (diff)
downloadqpid-python-e8ac34d6643375463dd59d7d614cddb59a01d5a6.tar.gz
QPID-2212: revert previous attempt at fix; disable on windows only
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@890683 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/examples/messaging')
-rw-r--r--qpid/cpp/examples/messaging/CMakeLists.txt10
1 files changed, 6 insertions, 4 deletions
diff --git a/qpid/cpp/examples/messaging/CMakeLists.txt b/qpid/cpp/examples/messaging/CMakeLists.txt
index 7c023e602a..88ab81dae9 100644
--- a/qpid/cpp/examples/messaging/CMakeLists.txt
+++ b/qpid/cpp/examples/messaging/CMakeLists.txt
@@ -17,10 +17,12 @@
# under the License.
#
-# disabling spout & drain under cmake until build issues on windows
-# are resolved (QPID-2212):
-#add_example(messaging drain ${Boost_PROGRAM_OPTIONS_LIBRARY})
-#add_example(messaging spout ${Boost_PROGRAM_OPTIONS_LIBRARY})
+# 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)
add_example(messaging queue_receiver)
add_example(messaging queue_sender)