When using clang++, how can I make CMake use the -std=c++0x flag when compiling, but not when linking?
-std=c++0x
There are several other posts regarding using cla
Use ADD_DEFINITIONS("-std=c++0x") instead of setting CXX flags.