Starting from the beginning !! can anybody here help me how to start running C project with MSVC ?
I have all the source files under:
src/ directory
all the header files under:
inc/ directory
and few of the source under:
test/ directory
test directory contains makefile for the project
How can I use the same setup in MSVC for compilation and debugging ?
Off the top of my head,
Regarding your makefile, check out this Stack Overflow answer which talks about cccl.
cccl is a wrapper around Microsoft Visual C++'s cl.exe and link.exe. It converts Unix compiler parameters into parameters understood by cl and link.