You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by kg...@apache.org on 2013/07/09 20:46:48 UTC

svn commit: r1501454 - /qpid/trunk/qpid/cpp/bindings/qmf2/examples/cpp/CMakeLists.txt

Author: kgiusti
Date: Tue Jul  9 18:46:47 2013
New Revision: 1501454

URL: http://svn.apache.org/r1501454
Log:
NO-JIRA: skip build of posix qmfv2 example on windows

Modified:
    qpid/trunk/qpid/cpp/bindings/qmf2/examples/cpp/CMakeLists.txt

Modified: qpid/trunk/qpid/cpp/bindings/qmf2/examples/cpp/CMakeLists.txt
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/bindings/qmf2/examples/cpp/CMakeLists.txt?rev=1501454&r1=1501453&r2=1501454&view=diff
==============================================================================
--- qpid/trunk/qpid/cpp/bindings/qmf2/examples/cpp/CMakeLists.txt (original)
+++ qpid/trunk/qpid/cpp/bindings/qmf2/examples/cpp/CMakeLists.txt Tue Jul  9 18:46:47 2013
@@ -91,7 +91,10 @@ if (MSVC)
 endif (MSVC)
 
 add_installed_example(qmf2 agent qmf2)
-add_installed_example(qmf2 event_driven_list_agents qmf2)
+if (NOT WIN32)
+  # uses posix select()
+  add_installed_example(qmf2 event_driven_list_agents qmf2)
+endif (NOT WIN32)
 add_installed_example(qmf2 list_agents qmf2)
 add_installed_example(qmf2 print_events qmf2)
 



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org