Qt: qt-sdk-win-opensource-2010.01
Mingw: 1686-mingw32-gcc-4.6.3-release
:
The .pro file:
TEMPLATE = app
TARGET =
SOURCES += ef.cpp
DEPENDPATH += .
INCLUDEPATH += .
The .cpp:
#include <stdio.h>
int main(int argc, char *argv[])
{
printf ("\nhjhjk\n");
}
The compilation and the executable output is as follows:
The executable called temp
and an object file called ef.o
get created in the debug
folder.
I have edited the qmake.conf
file as described here.
The print statement doesn't get printed. Please help.