diff --git a/build.bat b/build.bat new file mode 100644 index 0000000..7a3f003 --- /dev/null +++ b/build.bat @@ -0,0 +1,11 @@ +SET CGO_ENABLED=0 +SET GOOS=windows +SET GOARCH=amd64 +go build -o demo_windows_amd64.exe demo.go +SET CGO_ENABLED=0 +SET GOOS=linux +SET GOARCH=amd64 +go build -o demo_linux_amd64 demo.go +SET CGO_ENABLED=0 +SET GOOS=windows +SET GOARCH=amd64 \ No newline at end of file diff --git a/demo_linux_amd64 b/demo_linux_amd64 new file mode 100644 index 0000000..838572b Binary files /dev/null and b/demo_linux_amd64 differ diff --git a/demo_windows_amd64.exe b/demo_windows_amd64.exe new file mode 100644 index 0000000..4053d2e Binary files /dev/null and b/demo_windows_amd64.exe differ