Right basic question - I downloaded these source files, however there is no visual studio project file (sln) - how do I compile these in visual studio?
http://img146.imageshack.us/img146/5796/sourceu.jpg
Printable View
Right basic question - I downloaded these source files, however there is no visual studio project file (sln) - how do I compile these in visual studio?
http://img146.imageshack.us/img146/5796/sourceu.jpg
Open Visual Studio command prompt in this directory and execute command:
nmake /f Makefile
You can create makefile Visual Studio project and add all source files to it.
Not sure whether you can compile this on Visual Studio or not by just seeing the names of files.
Source might be for some unix /linux flavour which you might need to modify for it to work on Windows.
Also, you can peek into Makefile and README to find more information.
I would say that this is most likely intended to be compiled under linux since run.sh is present so you could download and install cygwin or install linux in a virtual machine.
Assuming VS can compile them, I'd make a new project and add them.