qt moc-qt4

今天使用qt4.5.2 编译 编译qtanimation的库

出现moc-qt4命令未找到提示发现原来是系统里面有一个qmake命令,连接到/usr/bin/qmake-qt4

然而使用这个qmake创建的makefile文件 指定的编译工具是moc-qt4

最后使用绝对路径指定qmake 为/opt/qtsdk-2009.03/qt/bin/qmake 便解决了这个问题

tsuibin@tsuibin-desktop:~/qtanimationframework-2.3-opensource/buildlib$  which       qmake /usr/bin/qmaketsuibin

@tsuibin-desktop:~/qtanimationframework-2.3-opensource/buildlib$

ls -l /usr/bin/qmake 

lrwxrwxrwx 1 root root 23 2009-07-03 12:46    /usr/bin/qmake -> /etc/alternatives/qmaketsuibin

@tsuibin-desktop:~/qtanimationframework-2.3-opensource/buildlib$

 ls -l  /etc/alternatives/qmake 

 lrwxrwxrwx 1 root root 18 2009-07-03 12:46 /etc/alternatives/qmake -> /usr/bin/qmake-qt4tsuibin

@tsuibin-desktop:~/qtanimationframework-2.3-opensource/buildlib$ ls -l /usr/bin/qmake-qt4 

-rwxr-xr-x 1 root root 3791400 2009-05-06 13:15 /usr/bin/qmake-qt4

你可能感兴趣的:(qt moc-qt4)