目录结构:
文件内容
qmldir中:
module QtLocaion
plugin declarative_location
classname QtLocationDeclarativeModule
typeinfo plugins.qmltypes
其中:
QtLocaion必须与qmldir所在的文件夹名字一样
plugin 后面的declarative_location 为插件名称,例如declarative_location.dll或者declarative_location.so
classname 后面的QtLocationDeclarativeModule为dll中的注册的C++类名称
plugins.qmltypes 由qmlplugindump -nonrelocatable QtLocation 5.14 程序自动生成,该文件为Qtcreator描述了dll中定义的C++类和属性,以便于QtCreator生成提示信息。
,使用代码补全功能。