[Help] Generate bindings for girs that depend on other girs #308
Labels
No labels
bug
dependencies
documentation
duplicate
enhancement
github_actions
good first issue
help wanted
invalid
java
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
java-gi/java-gi#308
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Hello.
I am trying to generate bindings for libraries that depend on other libraries.
Say we have
LibCar-1.0.gir, with depends onLibEngine-1.0.gir, when trying to generate bindings for the formerGIR namespace LibEngine not foundis thrown.How do I generate bindings for a library that depends on another library?
The tool processes accepts multiple gir files as command-line arguments. So try running
java-gi LibEngine-1.0.gir LibCar-1.0.gir.Did you get it to work?
Yes, I got it.
Thank you.