From b3ec273e334e3ee4a2e574caea2760ff97df79f3 Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Sat, 8 Feb 2014 10:53:33 -0800 Subject: [PATCH] remove animation server from unix to see if that addresses build buster, temporary solution --- CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a583d7d951..5baee3d42d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -28,9 +28,13 @@ IF (APPLE) ENDIF (DARWIN_VERSION GREATER 12) ENDIF(APPLE) +# targets only supported on mac +IF (APPLE) +add_subdirectory(animation-server) +ENDIF(APPLE) + # targets not supported on windows if (NOT WIN32) -add_subdirectory(animation-server) add_subdirectory(data-server) endif (NOT WIN32)