Monthly Archives: July 2015

Convert a Visual Studio 2010 project to a Linux project

In short The major steps are: Remove stdafx.h and improve dependency Modify signature for “main” function Setup Makefile in Linux system. Modify implementation details Modify signature for “main” function Modify the main function name from “int _tmain(int argc, _TCHAR* argv[])” to “int main()”. “_tmain” is not well recognized by Linux… Read more »