- Go 1.13
- Bash with basic build utils: make, gcc, sed, find, grep, ...
- For Windows it is recommended to use MinGW 64bit shell from MSYS2
- GCC (linux, windows) or Xcode (macOS)
- Windres (windows)
- libglvnd and libsecret development files (linux)
To enable the sending of crash reports using Sentry please set the
main.DSNSentry
value with the client key of your sentry project before build.
Otherwise, the sending of crash reports will be disabled.
- for Windows please unset the
MSYSTEM
variable
export MSYSTEM=
- in project root run
make build
- The result will be stored in
./cmd/Destop-Bridge/deploy/${GOOS}/
- for
linux
, the binary will have the name of the project directory (e.gproton-bridge
) - for
windows
, the binary will have the file extension.exe
(e.gproton-bridge.exe
) - for
darwin
, the application will be created with name of the project directory (e.gproton-bridge.app
)
- for
- in project root run
make build-ie
- The result will be stored in
./cmd/Import-Export/deploy/${GOOS}/
- for
linux
, the binary will have the name of the project directory (e.gproton-bridge
) - for
windows
, the binary will have the file extension.exe
(e.gproton-bridge.exe
) - for
darwin
, the application will be created with name of the project directory (e.gproton-bridge.app
)
- for
In order to be able to run following commands please install the development dependencies:
make install-dev-dependencies
make test
will run all unit testsmake lint
will lint the whole projectmake -C ./test test
will run the integration testsmake run
will build Bridge without a GUI and start it in CLI mode