Missing library how to find requested package

Asked by Rohith Kumar

I got this error report while running Qt

Configuration unchanged, skipping QMake step.
Starting: /usr/bin/make -w
make: Entering directory `/home/rohith/fancybrowser'
/usr/bin/rcc -name jquery jquery.qrc -o qrc_jquery.cpp
RCC: Error in 'jquery.qrc': Cannot find file 'jquery.min.js'
make: Leaving directory `/home/rohith/fancybrowser'
make: *** [qrc_jquery.cpp] Error 1
Exited with code 2.
Error while building project fancybrowser
When executing build step 'Make'

Please let me know what I am missing? Any library file or anything whihc i can install

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu apt Edit question
Assignee:
No assignee Edit question
Solved by:
Rohith Kumar
Solved:
Last query:
Last reply:
Revision history for this message
marcobra (Marco Braida) (marcobra) said :
#1

please open a terminal and install apt-file then update it

apt-file update

and when you miss a dependency please search with

apt-file search ...

in this case

apt-file search jquery.min.js

to find if there any installable package with the requested file

Revision history for this message
Rohith Kumar (rohithkumar-av) said :
#2

Thanks Marco Braida