code: Nuke savestate support (#42)

This commit is contained in:
GPUCode 2024-03-25 10:31:32 +02:00 committed by GitHub
parent a442389a60
commit ac792f7b98
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
348 changed files with 123 additions and 7083 deletions

View file

@ -20,11 +20,6 @@ if (NOT USE_SYSTEM_BOOST)
add_library(boost INTERFACE)
target_include_directories(boost SYSTEM INTERFACE ${Boost_INCLUDE_DIR})
# Boost::serialization
file(GLOB boost_serialization_SRC "${CMAKE_SOURCE_DIR}/externals/boost/libs/serialization/src/*.cpp")
add_library(boost_serialization STATIC ${boost_serialization_SRC})
target_link_libraries(boost_serialization PUBLIC boost)
# Boost::iostreams
add_library(
boost_iostreams