collada-dom: stop requiring the no longer existing Boost::system

fixes build with boost 1.91
This commit is contained in:
tb
2026-05-10 15:29:53 +00:00
parent fb6e83358a
commit 833bcd4197
@@ -10,6 +10,15 @@ Index: CMakeLists.txt
set(COLLADA_DOM_INCLUDE_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/dom/include)
set(COLLADA_DOM_LINK_DIRS "")
@@ -151,7 +151,7 @@ endif()
if( NOT $ENV{BOOST_LIBRARYDIR} STREQUAL "" )
set(Boost_LIBRARY_DIRS $ENV{BOOST_LIBRARYDIR})
endif()
-find_package(Boost COMPONENTS filesystem system REQUIRED)
+find_package(Boost COMPONENTS filesystem REQUIRED)
message(STATUS "found boost version: ${Boost_VERSION}")
@@ -175,11 +175,7 @@ foreach(ldir ${Boost_LIBRARY_DIRS})
set(COLLADA_DOM_BOOST_LIB_DIRS "${COLLADA_DOM_BOOST_LIB_DIRS} -L${ldir}")
endforeach()