-
Notifications
You must be signed in to change notification settings - Fork 21
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
Using rgtk in other projects - Consider expanding "Use rgtk" section in readme? #66
Comments
hey, For the moment we have a So:
Be warn, that rgtk is really incomplete for the moment, it miss a lot of Widget ! |
this pull request should allow use to pass |
Yes that seems to work.
to the Cargo.toml file you can activate the specific libraries in a projects dependencies.
the correct --cfg is passed
|
So I can now get cargo to pass --cfg GTK_3_12 to rustc but for me at least it still fails with
Any ideas what the issue might be? |
I have the same behaviour on my computer, I can't find where this come, it may be a problem with GTK_VERSION configuration. |
I misread the cargo documentation. |
So I think this issue is fixed now, correct? |
Yep i thinks it's fixed now ! |
I made some attempt to use
rgtk
for a test application. Here's what's in myCargo.toml
Here's a simple program involving an
Entry
and aListBox
The build fails with the following message:
Environment
So it looks like ListBox is not present. However, if I put the same code into
rgtktest.rs
(which is insidergtk/examples
directory) and usemake rgtktest
, it compiles and runs fine. Seems like the make file is linking some additional dependencies which I suspect islibrgtk_glue.o
insidetarget/deps/
.So here's what I'm asking:
I'm more than happy to help expand the readme, but I'll need some guidance here to get things started.
Thanks!
The text was updated successfully, but these errors were encountered: