From 62cf9d5b8c57c1853cf90860de2ef2146f82df18 Mon Sep 17 00:00:00 2001 From: Brad Hefta-Gaub Date: Sun, 12 Jan 2014 17:43:34 -0800 Subject: [PATCH] remove animation-server from windows build until it supports QThreads --- CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0881c35822..9e793ce560 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,7 +25,12 @@ IF (APPLE) ENDIF (DARWIN_VERSION GREATER 12) ENDIF(APPLE) +# targets not supported on windows +if (NOT WIN32) add_subdirectory(animation-server) +endif (NOT WIN32) + +# targets on all platforms add_subdirectory(assignment-client) add_subdirectory(domain-server) add_subdirectory(interface)