cereal/renameincludes.sh
Randolph Voorhies 8ec6ded75c Added renameincludes script
This is to allow projects to easily include Cereal into their project
2013-07-01 15:25:29 -07:00

13 lines
269 B
Bash
Executable File

#!/usr/bin/env bash
destdir="include_renamed"
echo -n "New prefix: "
read newprefix
cp -r include ${destdir}
newprefix=$(echo ${newprefix} | sed -e 's/\//\\\//')
find ${destdir} -name '*.hpp' -exec sed -i "s/#include <cereal/#include <${newprefix}\/cereal/" {} \;