Hi everybody

i imported Colibri plugin into QML project

in code ,although i can fine Colibri Component
but when i build the code, the Debug output popup the error like this : qrc:/UI/demo.qml:27:1: "colibri": no such directory

Here is my code
Qt Code:
  1. import QtQuick 1.0
  2. import Qt 4.7
  3. import "colibri"
  4.  
  5. Rectangle{
  6. id: abc
  7. width: 300
  8. height: 300
  9.  
  10.  
  11. CLComboBox{
  12. id: cb
  13. x: 56
  14. y: 252
  15. }
  16. }
To copy to clipboard, switch view to plain text mode 

And here is the debug output
Debugging starts
&"warning: GDB: Failed to set controlling terminal: Invalid argument\n"
qrc:/UI/demo.qml:3:1: "colibri": no such directory
Debugging has finished
Please help me, i cannot find which is the cause ??