1
0
mirror of https://github.com/citra-emu/citra.git synced 2025-04-18 12:00:46 +00:00

Fix using system boost ()

closes 
This commit is contained in:
Marshall Mohror 2020-06-23 21:30:35 -05:00 committed by GitHub
parent e79de3107e
commit c4a4b40b2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -344,7 +344,7 @@ add_subdirectory(externals)
# Boost
if (USE_SYSTEM_BOOST)
find_package(Boost 1.70.0 QUIET REQUIRED)
find_package(Boost 1.70.0 COMPONENTS serialization REQUIRED)
else()
add_library(Boost::boost ALIAS boost)
add_library(Boost::serialization ALIAS boost_serialization)