How to compile open source framework in Visual Studio C++, that has "makefile" only and no solution file? -
How to compile open source framework in Visual Studio C ++, with "makefile" only and no other solution file ?
Unfortunately there is no silver bullet for this type of change. Make and Visual Studio C ++ style builds are very different animals, although they can perform very similar functions, they can do wildly different structures, which provides an easy guide which is very difficult.
IMHO, the best way to get this started is to start a new C ++ project. Add all existing files and take a step-by-step approach by trying to convert every action to an equivalent C ++ action.
Comments
Post a Comment