From cb41fbef8e8b3050dab363af6db241cf6903fa07 Mon Sep 17 00:00:00 2001 From: Mitchell Stokes Date: Thu, 8 Nov 2012 05:50:02 +0000 Subject: [PATCH] CMake: Since Audaspace now requires Boost, auto enable Boost if WITH_AUDASPACE is enabled. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c33f4384a76..d8ae92d59d1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -372,8 +372,8 @@ if(WITH_CYCLES) set(WITH_OPENIMAGEIO ON) endif() -# auto enable boost for cycles and booleans -if(WITH_CYCLES OR WITH_MOD_BOOLEAN) +# auto enable boost for cycles, booleans or audaspace +if(WITH_CYCLES OR WITH_MOD_BOOLEAN OR WITH_AUDASPACE) set(WITH_BOOST ON) endif()