adjust_header_paths.sh 723 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. declare -a headers=("fast_atof.h"
  2. "qnan.h"
  3. "BaseImporter.h"
  4. "Hash.h"
  5. "MemoryIOWrapper.h"
  6. "ParsingUtils.h"
  7. "StreamReader.h"
  8. "StreamWriter.h"
  9. "StringComparison.h"
  10. "StringUtils.h"
  11. "SGSpatialSort.h"
  12. "GenericProperty.h"
  13. "SpatialSort.h"
  14. "SkeletonMeshBuilder.h"
  15. "SmoothingGroups.h"
  16. "StandardShapes.h"
  17. "RemoveComments.h"
  18. "Subdivision.h"
  19. "Vertex.h"
  20. "LineSplitter.h"
  21. "TinyFormatter.h"
  22. "Profiler.h"
  23. "LogAux.h"
  24. "Bitmap.h"
  25. "XMLTools.h"
  26. "IOStreamBuffer.h"
  27. "CreateAnimMesh.h"
  28. "irrXMLWrapper.h"
  29. "BlobIOSystem.h"
  30. "MathFunctions.h"
  31. "Macros.h"
  32. "Exceptional.h"
  33. "ByteSwapper.h")
  34. for i in "${headers[@]}"
  35. do
  36. find . -type f -exec sed -i "s,<../code/$i>,<assimp/$i>,g" {} \;
  37. done