我正在尝试在qnx平台上执行canvas3d项目。执行时会抛出错误,如下所示
qrc:/main.qml:40:1: module "QtQuick.Layouts" is not installed
qrc:/main.qml:39:1: module "QtQuick.Controls" is not installed
qrc:/main.qml:38:1: module "QtCanvas3D" is not installed
main.qml已在
下面导入 import QtQuick 2.0
import QtCanvas3D 1.0
import QtQuick.Controls 1.0
import QtQuick.Layouts 1.0
任何人都可以帮我弄清楚如何安装这个缺少的模块?
我使用的是Qt Creator 3.5.1(企业版)许可版。
提前谢谢。
答案 0 :(得分:0)
我能够通过使用env变量QML2_IMPORT_PATH来解决此错误。
但现在我收到错误public static class MyServiceExtensions
{
public static IServiceCollection AddMyLibrary(this IServiceCOllection services)
{
services.Add<Interface1,Implemenetation1>();
services.Add<Interface2,Implemenetation2>();
return services;
}
}
有人可以告诉我这可以做些什么吗?