Is there any method/technique/feature to add automatically incremented build number to the code (managed by software or tool)? the build number can be used for viewing (hence traceability of the code).
What is the mistake that i am committing?
Did you try to figure it out yourself? First of all, do you actually need all those command line switches: "-nmdfe"? Do you understand what they mean? Because I don't think you need them. Secondly, you really should enclose file paths in quotes. Those spaces in directory names can easily create problems.
Thank you. Double inverted commas got me the required output.
Secondly, you really should enclose file paths in quotes. Those spaces in directory names can easily create problems.
Or better yet, one should really just not use spaces in file and directory names. They simply aren't worth the grief they routinely cause. Blanks in filenames just don't mix well with command-line oriented tools like compilers.
Absolutely!
(and, of course, "filenames" includes folder names)