-
I'm coming from the GoG Galaxy Steam integration, where we basically reinvent everything done here, except much worse. I'd simply install this package and import it, but the code i inherited is so bass-ackwards i'm trying to change as little as possible while keeping it working. To give a short rundown, I need to include a different message than what we're currently using, which means a different proto file. I have the proto file and If you could tell me how to compile the proto file correctly so it matches the expected format you and seemingly everyone else use, that would be much appreciated. For reference, here is what the base steam messages outputs when i compile using |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Found your makefile, nevermind. For anyone who sees this and cares, you'll need gmake, which you can get on Ubuntu with You can also simply copy/paste the commands from the makefile manually if you want. They're just bash commands you can run from a terminal |
Beta Was this translation helpful? Give feedback.
Found your makefile, nevermind. For anyone who sees this and cares, you'll need gmake, which you can get on Ubuntu with
sudo apt install make
(or the equivalent package for other distros). For windows, you can use min-gw or WSL (which is what i did). The command ismake pb_update
. You may need your python virtual environment configured properly, but that's a project-related thing and out of scope here.You can also simply copy/paste the commands from the makefile manually if you want. They're just bash commands you can run from a terminal