From 56c4ee5525a4ba5301153d7f385b5ac0bce4dadf Mon Sep 17 00:00:00 2001 From: acgessler Date: Sun, 6 Oct 2013 22:30:19 +0200 Subject: [PATCH] Turn ASSIMP_BUILD_BOOST_WORKAROUND on by default, fixes #144 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0b09ff1ec..9ebf26d29 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -72,7 +72,7 @@ add_custom_target(uninstall "${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/c # Globally enbale Boost resp. the Boost workaround – it is also needed by the # tools which include the Assimp headers. -SET ( ASSIMP_ENABLE_BOOST_WORKAROUND OFF CACHE BOOL +SET ( ASSIMP_ENABLE_BOOST_WORKAROUND ON CACHE BOOL "If a simple implementation of the used Boost functions is used. Slightly reduces functionality, but enables builds without Boost available." ) IF ( ASSIMP_ENABLE_BOOST_WORKAROUND )