View Single Post
Posts: 53 | Thanked: 51 times | Joined on Feb 2010
#4
Thanks for the reply, but I would rather go with C/C++.

I am currently writing instructions for getting a whole dev environment setup. So far, I am at scratchbox stage and compiling the hello world to test it.

So far, when I do the qmake -project, qmake and make, I get the following error:

Code:
> make
g++ -c -pipe -O2 -Wall -W -D_REENTRANT -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/targets/FREMANTLE_X86/usr/share/qt4/mkspecs/linux-g++ -I. -I/targets/FREMANTLE_X86/usr/include/QtCore -I/targets/FREMANTLE_X86/usr/include/QtGui -I/targets/FREMANTLE_X86/usr/include -I. -I. -o HelloWorld.o HelloWorld.cpp
HelloWorld.cpp:6: error: stray '\342' in program
HelloWorld.cpp:6: error: stray '\200' in program
HelloWorld.cpp:6: error: stray '\234' in program
HelloWorld.cpp:6: error: stray '\342' in program
HelloWorld.cpp:6: error: stray '\200' in program
HelloWorld.cpp:6: error: stray '\235' in program
HelloWorld.cpp: In function 'int main(int, char**)':
HelloWorld.cpp:6: error: 'Hello' was not declared in this scope
make: *** [HelloWorld.o] Error 1
The Hello world is:

Code:
#include <QApplication>
#include <QLabel>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QLabel *label = new QLabel(“Hello World”);
label->show();
return app.exec();
}
I have already updated the scratchbox and added the libqt4-gui and libqt4-dev.

Any help would be appreciated. Once I have it all setup il post the instructions which will hopefully save people hours/days of just running around in circles!

Thanks.