clay
clay copied to clipboard
C projects should use C flags rather than CXX flags
In CMAKE, the *CXX*
flags are for C++ only, so C files are not compiled with anything that falls under CXX
flags. C
flags should be used for .c
files.