# 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. ```magic_env_lines /** 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" ```