I am having problems linking non-qt console application using qtCreator, vs2015 kit.

The error I am getting is:
MSVCRTD.lib(exe_winmain.obj):-1:
error: LNK2019: unresolved external symbol _WinMain@16 referenced in function "int __cdecl invoke_main(void)" (?invoke_main@@YAHXZ)

I will appreciate advise or comment what I am doing wrong here.

My .pro file is:

Qt Code:
  1. TEMPLATE = app
  2. CONFIG += console c++11
  3. CONFIG -= qt
  4.  
  5. LIBS = kernel32.lib \
  6. user32.lib \
  7. gdi32.lib
  8.  
  9. #LIBS += -L"$(BOOST)/stage/lib"
  10. SOURCES += main.cpp
To copy to clipboard, switch view to plain text mode 


My main.cpp file is:
Qt Code:
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() //(int argc, char * argv[]) , I tried main with and without arguments, with and without "void"
  5. {
  6. cout << "Hello World!" << endl;
  7. return 0;
  8. }
To copy to clipboard, switch view to plain text mode