1.0.2 update

This commit is contained in:
Alexander Popov 2023-07-31 18:10:34 +03:00
parent a0778de28a
commit 13ca75a3bf
Signed by: iiiypuk
GPG Key ID: E47FE0AB36CD5ED6
2 changed files with 11 additions and 0 deletions

View File

@ -8,6 +8,14 @@
> This project use Semantic Versioning 2.0.0 https://semver.org/
## 31/07/2023 - (1.0.2)
- ♻️ - Update software executable name
- ♻️ - Update Makefile
- ♻️ - Format code via `indent`
- - Added cJSON library as submodule
- - Added building with `tcc`
- ❌ - Removed Conan building system
## 14/09/2022 - (1.0.1)
- - Added [Conan](https://conan.io/) for Windows
- ✔️ - Fixed bad returned value of `assets_version`

View File

@ -9,6 +9,9 @@ $(EXEC):
$(CC) $(CFLAGS) -o $(EXEC) ./src/main.c $(LIBS)
tcc:
tcc -O3 -o $(EXEC) ./src/main.c $(LIBS)
tcc-static:
tcc -O3 -o $(EXEC) ./src/main.c ./cJSON/libcjson.a
clean: