in ubuntu 12.04 make cannot find Qt libraries

前端 未结 2 859
傲寒
傲寒 2021-01-18 17:22

When I run make (after running qmake) I get the following error:

/usr/bin/ld: cannot find -lQtGui
/usr/bin/ld: cannot find -lQtCore

In syna

2条回答
  •  旧时难觅i
    2021-01-18 18:27

    Install Qt using apt-get

    sudo apt-get install libqt4-core libqt4-gui 
    

    or if you want everything

    sudo apt-get install libqt4-*
    

提交回复
热议问题