|
|
||
|---|---|---|
| frontend/dist | ||
| static | ||
| .DS_Store | ||
| .gitignore | ||
| .gitmodules | ||
| README.md | ||
| app.go | ||
| build.sh | ||
| chords.go | ||
| config.go | ||
| config.json | ||
| debug.go | ||
| debug.sh | ||
| density.go | ||
| fingerings.go | ||
| go.mod | ||
| go.sum | ||
| intervals.go | ||
| main.go | ||
| notes.go | ||
| release.go | ||
| scoresets.go | ||
| shapes.go | ||
| shift_test.go | ||
| wails.json | ||
README.md
web-tuner
A neat little tool for custom tuning string instruments.
Pre-requisites
- wails
- needs c and c++, aka GCC or clang/xcode-commandline-tools
- go
- inkscape (or build manually instead if you don't care about the icon)
Setup
Mac
./build.sh
On Windows or anywhere build.sh does not work
wails build -clean
If you are having trouble still, I'd review build.sh and figure out what you might be missing from your path.
/** I'm talking about these ones, if you don't have valid env vars for these, that is why it isn't compiling. */
export CC=/usr/bin/clang
export CXX=/usr/bin/clang++
export SDKROOT=$(xcrun --show-sdk-path)
export PATH="$HOME/go/bin:$PATH"