https://golang.google.cn/dl/ 下载安装go最新版本 2、go get -u -v github.com/therecipe/qt/cmd/… && for /f %v in (‘go env GOPATH’) do %v\bin\qtsetup test && %v\bin\qtsetup -test=false https://studygolang.com/topics/3309 安装5.13.0 https://download.qt.io/official_ … dows-x86-5.13.0.exe https://www.cnblogs.com/hupeng1234/p/9500827.html qtdeploy build desktop ../1.1/ qtdeploy build [target] [path/to/your/project] https://www.cnblogs.com/apocelipes/p/9300335.html qtdeploy讲解 qtdeploy build [target] [path/to/your/project] target是指定的目标平台,编译完成后的程序将可以在target指定的平台上运行。 如果也可以将target设为desktop,qtdeploy将会根据本地环境选择相对应的target。以下是部分可用的target选项: desktop windows linux android android-emulator ios ios-simulator sailfish sailfish-emulator rpi1 rpi2 rpi3 https://github.com/therecipe/qt/wiki/Available-Tools c:\ android-sdk-windows C:\android-ndk-r18b 这两个目录是要有的,安卓打包不行时,先用androidstudio打开生成一个apk,可能要下载些资源依赖 https://www.cnblogs.com/chevin/p/8444698.html 生成go的proto源文件 go get github.com/golang/protobuf/protoc-gen-go 获取到下载到GOPATH/bin中 go get github.com/golang/protobuf/proto安装protobuf库 |