C++ features detection fixed to c++11

When using mtl in a library that uses c++14 or higher, the mtl cmake configuration set the std=c++11 flag in MTL_CXX_DEFINITIONS. This is in conflict with other flag. Should be corrected to allow higher standards, either by testing for c++ features using cmake functionality, or by providing higher standard directly and using the highest standard available.

Edited by Praetorius, Simon