Module "QtQuick.Controls" is not installed
-
hi guys, i write a simple project by qt 5.3 in qt quick 1. when i insert "import QtQuick.Controls 1.0" or "import QtMultimedia 5.0" and run it, it show me this error "module "module "QtQuick.Controls" is not installed" or "module "QtMultimedia" is not installed". what 's the problem? this is my code
import QtQuick 1.1
import QtQuick.Controls 1.0
import QtMultimedia 5.0Application {
MouseArea { anchors.fill: parent onClicked: { Qt.quit(); } } Text { text: qsTr("Hello World") anchors.centerIn: parent }
}