[Qt] Nothing to be done for ...

General questions regarding the usage of CodeLite
Kush
CodeLite Enthusiast
Posts: 11
Joined: Sat Jul 27, 2013 5:07 pm
Genuine User: Yes
IDE Question: C++
Contact:

[Qt] Nothing to be done for ...

Post by Kush »

I'm trying to use Qt, but is not working

It is a console application
Already added all environment variable

Code: Select all

C:\Windows\system32\cmd.exe /c "mingw32-make.exe -j 4 -e -f  Makefile"
"----------Building project:[ MyQtProj - Debug ]----------"
mingw32-make.exe[1]: Entering directory `C:/Users/pc/Desktop/TestLibrary/MyQtProj'
mingw32-make.exe[1]: Nothing to be done for `MyQtProj.mk'.
mingw32-make.exe[1]: Leaving directory `C:/Users/pc/Desktop/TestLibrary/MyQtProj'
0 errors, 0 warnings
Source: main.cpp

Code: Select all

#include <QString>

 int main(int argc, char **argv)
 {
 	QString str;

 	str = "Hello world from QT";
 	printf("%s\n", str.toLocal8Bit().constData());

 	return 0;

 }
User avatar
eranif
CodeLite Plugin
Posts: 6373
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: [Qt] Nothing to be done for ...

Post by eranif »

Post the makefile here (both MyQtProj.mk and Makefile)

Eran
Make sure you have read the HOW TO POST thread
Kush
CodeLite Enthusiast
Posts: 11
Joined: Sat Jul 27, 2013 5:07 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: [Qt] Nothing to be done for ...

Post by Kush »

I could not find the Makefile in the folder, only .mk
MyQtProj.rar
You do not have the required permissions to view the files attached to this post.
Post Reply