-
-
Notifications
You must be signed in to change notification settings - Fork 127
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
Restructure files to allow for easy import of cef2go package #21
Comments
Hi Czarek, I think that this would really be a crucial next step. It would make it, as people say, 'idiomatic', so it will feel natural and people would implicitly know how to use it even without instructions.
Continuing with 5. Now, to the current state, while the application is developed, a) gets re-compiled every time, while b) is always the same. regarding the HelloWolrd, yes, it will be different in some way it will be done, maybe, again, as external tool. |
Make necessary changes so that the cef2go package can be imported with statement like this:
import github.com/CzarekTomczak/cef2go
.Not yet sure how to do that, golang documentation is not clear in that regard.
I think that after restructuring, the main_windows.go example should update this code:
To this:
Some questions:
import cef
for local development and the other for download withimport github.com/...
? Do we need to make two copies of the same file or is there a better way to do this? Is there something liketry: import cef except: import github.com/...
?import github.com/...
is not enough? What would be the simplest Hello World example? This needs further investigation.I don't think there can be created a simple one click HelloWorld example. It is still required to download binaries and copy them to the Release/ directory, as explained in README.
The text was updated successfully, but these errors were encountered: