Added Build Script for Windows and linux

This commit is contained in:
simon 2025-05-19 21:01:26 +02:00
parent 853fda9814
commit ac5c660583
3 changed files with 9 additions and 2 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
alox.protogen alox.protogen
alox.protogen.exe
build/ build/

View File

@ -1,2 +1,8 @@
build:
go build .
build_win:
GOOS=windows go build .
clean: clean:
rm -rf build rm -rf build

View File

@ -86,7 +86,7 @@ Each message is described as:
- [x] Hook-Funktionen - [x] Hook-Funktionen
- [x] Message-Dispatcher (Switch-Case) - [x] Message-Dispatcher (Switch-Case)
- [x] Send-Funktionen - [x] Send-Funktionen
- [ ] Generate Header and Source File - [x] Generate Header and Source File
--- ---
## To-Do ## To-Do
@ -119,7 +119,7 @@ Each message is described as:
### Tooling ### Tooling
- [ ] CLI interface (`--input`, `--output`, `--language`, ...) - [ ] CLI interface (`--input`, `--output`, `--language`, ...)
- [ ] Logging / verbose mode - [ ] Logging / verbose mode
- [ ] Build script / Makefile - [x] Build script / Makefile
### Testing ### Testing
- [ ] Unit tests for generator - [ ] Unit tests for generator