build: Find boost with name "Boost" (#1840)
On many distributions like AOSC OS, Alpine Linux, Arch Linux, etc., boost should be searched with name "Boost". This should fix the packaging issue on AOSC OS. ### Problem description CMake fails to find system boost when `USE_SYSTEM_BOOST` is set to ON. ### Implementation description Find Boost. Signed-off-by: xtex <xtexchooser@duck.com>
This commit is contained in:
parent
7011df2ced
commit
811c995047
@ -702,8 +702,8 @@ macro(addBundledLibraries)
|
||||
endif()
|
||||
|
||||
if (USE_SYSTEM_BOOST)
|
||||
find_package(boost REQUIRED)
|
||||
set(BOOST_LIBRARIES boost::regex)
|
||||
find_package(Boost REQUIRED)
|
||||
set(BOOST_LIBRARIES Boost::regex)
|
||||
else()
|
||||
add_subdirectory(${THIRD_PARTY_LIBS_FOLDER}/boost ${CMAKE_CURRENT_BINARY_DIR}/boost EXCLUDE_FROM_ALL)
|
||||
set(BOOST_LIBRARIES boost::regex)
|
||||
|
Loading…
Reference in New Issue
Block a user