example use of xargs application in Unix can be something like this:
xargs
ls | xargs echo
which is the same as (let\'s say I have <
You do not need xargs for this. Just use:
g++ `find . -type f -name '*.cpp'` -o outputFile