当前位置: 技术问答>linux和unix
新手编译问题
来源: 互联网 发布时间:2016-01-06
本文导语: 各位大牛,我有一个问题,恳请大家帮帮我! 我按着以下例子在QT Designer下写了一个程序。 #include #include int main( int argc, char **argv ) { QApplication a( argc, argv ); QPushButton hello( "Hello world!", 0 ); ...
各位大牛,我有一个问题,恳请大家帮帮我!
我按着以下例子在QT Designer下写了一个程序。
#include
#include
int main( int argc, char **argv )
{
QApplication a( argc, argv );
QPushButton hello( "Hello world!", 0 );
hello.resize( 100, 30 );
a.setMainWidget( &hello );
hello.show();
return a.exec();
}
但是在终端执行:
qmake -project
qmake
都没有问题,
然后执行make,却有以下问题:
Hello.cpp: In function 'int main(int,char**)';
Hello.cpp:9: parse error before '.' token
make: ***[Hello.o] Error 1
请各位指教!
我按着以下例子在QT Designer下写了一个程序。
#include
#include
int main( int argc, char **argv )
{
QApplication a( argc, argv );
QPushButton hello( "Hello world!", 0 );
hello.resize( 100, 30 );
a.setMainWidget( &hello );
hello.show();
return a.exec();
}
但是在终端执行:
qmake -project
qmake
都没有问题,
然后执行make,却有以下问题:
Hello.cpp: In function 'int main(int,char**)';
Hello.cpp:9: parse error before '.' token
make: ***[Hello.o] Error 1
请各位指教!
|
int main( int argc, char **argv[] )
是这样的吗?
是这样的吗?