I am Unix guy but for a project I need to code in VS 2015. Basically I need to write some GMOCK test cases for some C++ classes.
I first tried to start with a sample project so I selected File->New->Project->Win32->Win32 Console Application. The project did got created with a default name ConsoleApplication2.cpp having embedded statement -
#include "stdafx.h"
I found that if I delete this line the code fails to compile - Usually in Unix I create .h and .cpp files and then create its make file - my aim was to start a project - create some .h files first and then create its .cpp / GMOCK test cases and build then build all
Please let me know if there is an option in VS for same or the way to do so?