-
Notifications
You must be signed in to change notification settings - Fork 748
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for Go modules #726
Comments
Hey I will look into this. |
Okay, it should be possible now to use this inside a moduled project with 8610850 It currently works by using |
Will close this, since the status is tracked here #755 (comment) now |
It's now been several months since the official
go mod
tool was released. It is (so far) impossible, however, to use this package inside of a moduled project without resorting to GOPATH hacks or installing packages in GOPATH, then disabling the modules system and runningqtdeploy
. A solution to he whole ordeal could be generating qt inside the$GOPATH/pkg/mod
and providing/generating ago.mod
file. This way, a replace directive can be used to load the module from local storage.PS I'm on Windows and Go 1.11
The text was updated successfully, but these errors were encountered: