bugfix: remove WIN32-lookup for boost setup because these features are platform independent.

Signed-off-by: Kim Kulling <kim.kulling@googlemail.com>
pull/261/head^2
Kim Kulling 2014-04-26 09:59:27 +02:00
parent f63cf6b5c8
commit d49837819e
1 changed files with 10 additions and 12 deletions

View File

@ -47,7 +47,6 @@ endif (CMAKE_BUILD_TYPE EQUAL "DEBUG")
# the boost version assimp was compiled with
set( ASSIMP_Boost_VERSION "@Boost_MAJOR_VERSION@.@Boost_MINOR_VERSION@")
if( WIN32 )
# search for the boost version assimp was compiled with
set(Boost_USE_MULTITHREAD ON)
set(Boost_USE_STATIC_LIBS OFF)
@ -58,7 +57,6 @@ if( WIN32 )
else(Boost_VERSION AND NOT "${Boost_VERSION}" STREQUAL "0")
message(WARNING "Failed to find Boost ${ASSIMP_Boost_VERSION} necessary for assimp")
endif(Boost_VERSION AND NOT "${Boost_VERSION}" STREQUAL "0")
endif( WIN32 )
# for compatibility wiht pkg-config
set(ASSIMP_CFLAGS_OTHER "${ASSIMP_CXX_FLAGS}")