diff options
author | Kenneth Anthony Giusti <kgiusti@apache.org> | 2013-07-09 18:46:47 +0000 |
---|---|---|
committer | Kenneth Anthony Giusti <kgiusti@apache.org> | 2013-07-09 18:46:47 +0000 |
commit | 934d23d90cb12c820ff71e54f2220991fd72c081 (patch) | |
tree | b05c09eb85d033040b3486321b98e69714fbf6cf | |
parent | 0b5d408a5178016eb443f645ca771e8470e77287 (diff) | |
download | qpid-python-934d23d90cb12c820ff71e54f2220991fd72c081.tar.gz |
NO-JIRA: skip build of posix qmfv2 example on windows
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1501454 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | qpid/cpp/bindings/qmf2/examples/cpp/CMakeLists.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/qpid/cpp/bindings/qmf2/examples/cpp/CMakeLists.txt b/qpid/cpp/bindings/qmf2/examples/cpp/CMakeLists.txt index d946a61e61..6621137ba9 100644 --- a/qpid/cpp/bindings/qmf2/examples/cpp/CMakeLists.txt +++ b/qpid/cpp/bindings/qmf2/examples/cpp/CMakeLists.txt @@ -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) |