mirror of
https://github.com/RPCS3/cereal.git
synced 2026-01-31 01:25:20 +01:00
5 lines
386 B
Bash
Executable File
5 lines
386 B
Bash
Executable File
# Applies renaming within all of the rapidjson source files to add a cereal prefix
|
|
find ./../include/cereal/external/rapidjson/ -type f -name \*.h -exec sed -i "s/RAPIDJSON_/CEREAL_RAPIDJSON_/g" {} \;
|
|
echo "Remember to backport any cereal specific changes not in this version of RapidJSON!"
|
|
echo "See https://github.com/USCiLab/cereal/commits/develop/include/cereal/external/rapidjson"
|