You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd like to compile / run this on MacOS & Linux ... but there aren't any instructions by which to build or set up a dev environment. Adding them would be useful...
The text was updated successfully, but these errors were encountered:
Make sure you have Go installed on ur OS. In my case, it's: $ pkg install golang
Clone this repo: $ git clone https://github.com/hpxro7/wwiseutil.git
Navigate to the repo: $ cd wwiseutil
Initialize go.mod: $ go mod init something
Depending on which file you want to compile,
for example, I want to compile the nogui version (cmd): $ cd cmd
Build main.go: $ go build main.go
You'll be asked to install some modules if they're not installed yet.
For example, if you're trying to build cmd/main.go: $ go get github.com/hpxro7/wwiseutil/wwise github.com/hpxro7/wwiseutil/util github.com/hpxro7/wwiseutil/pck github.com/hpxro7/wwiseutil/bnk
Run the build again after installing modules: $ go build main.go
The output file depends on where you run go build. If you run go build inside folder wwise, then the output is inside folder wwise.
in my case, the output is in the cmd folder because I run go build there.
I'd like to compile / run this on MacOS & Linux ... but there aren't any instructions by which to build or set up a dev environment. Adding them would be useful...
The text was updated successfully, but these errors were encountered: