From 13ca75a3bfa10fb0cfe4b5b85efc162e48994ce0 Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Mon, 31 Jul 2023 18:10:34 +0300 Subject: [PATCH] 1.0.2 update --- HISTORY.md | 8 ++++++++ Makefile | 3 +++ 2 files changed, 11 insertions(+) diff --git a/HISTORY.md b/HISTORY.md index 1a05fbe..527db41 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -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` diff --git a/Makefile b/Makefile index 207d0e9..7f3a903 100644 --- a/Makefile +++ b/Makefile @@ -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: