I have a project containing C files, header files and other files with different extensions like:
Parent folder/C foolder/... all c Files.
Parent folder/Header folder/ ... all header files
Now, what I want is to compile only few c files from c folder and same for header. After looking at few links at stackoverflow like this post about how to exclude files with .m extensions by adding
-fno-objc-arc
compiler flag, but doesn't explains how to exclude .c files.