include < SDL/SDL_rwops.h > from file
/Urho3D/include/Urho3D/IO/RWOpsWrapper.h
does not exist with path /Urho3D/Source/ThirdParty/SDL/include
linux has
/usr/include/SDL2/SDL_rwops.h
needed to setup right path, not < SDL/SDL_rwops.h >
SDL2 and SDL different packages
should write
include < SDL/include/SDL_rwops.h >
or
include < SDL2/SDL_rwops.h >
or setting by right include path
include < SDL_rwops.h >