We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello. This is the most stupid issue ever. I'm reading your website:
You will need to install the latest release of the Cap’n Proto schema compiler.
Success! Now I've got capnp.
capnp
Then, running make should build capnpc-java.
make
Um, running make from where? Oh, OK, I need to clone this repo, cd into it and run make. Now I've got ./capnpc-java.
cd
./capnpc-java
On Windows,
Happy Linux-user, skipping...
Note that you’ll need to include java.capnp so that you can use the package and outerClassname annotations.
Include where?
using Java = import "/capnp/java.capnp";
yields
schema.capnp:2:21-40: error: Import failed: /capnp/java.capnp schema.capnp:3:2-6: error: Not defined: Java schema.capnp:4:2-6: error: Not defined: Java
/capnp/java.capnp looks like I need a directory called capnp at my mounting point (/), which looks strange.
/capnp/java.capnp
/
using Java = import "./compiler/src/main/schema/capnp/java.capnp";
Oh, I need to include it here. Success!
Looks like there are several unclear places in your manual.
Thanks!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello. This is the most stupid issue ever. I'm reading your website:
Success! Now I've got
capnp
.Um, running
make
from where?Oh, OK, I need to clone this repo,
cd
into it and run make. Now I've got./capnpc-java
.Happy Linux-user, skipping...
Include where?
yields
/capnp/java.capnp
looks like I need a directory calledcapnp
at my mounting point (/
), which looks strange.Oh, I need to include it here.
Success!
Looks like there are several unclear places in your manual.
Thanks!
The text was updated successfully, but these errors were encountered: