Skip to content

Commit

Permalink
[Add@lerror] : add lerror lib and refactor some code
Browse files Browse the repository at this point in the history
  • Loading branch information
MasterLaplace committed Oct 10, 2023
1 parent 46c33f6 commit b7ad94b
Show file tree
Hide file tree
Showing 21 changed files with 235 additions and 57,578 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/commit_norm_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ jobs:
- name: Commit Name Checker
run: |
commit_msg=$(git log --format=%B -n 1 ${{ github.sha }})
keyword_regex="^\[[A-Z][@_A-Za-z, ]+\] : "
keyword_regex="^\[[A-Z][@_A-Za-z,/| ]+\] : "
echo "Commit message: $commit_msg"
if [[ ! $commit_msg =~ $keyword_regex ]]; then
if [[ $commit_msg =~ ^Merge\ .* ]]; then
echo "Skipping merge commit"
else
echo $commit_msg
echo "Commit message does not match expected format. Please use the following format:\"[Keyword] : comment\""
echo "Commit message does not match expected format. Please use the following format: \"[Keyword@file] : comment\""
exit 1
fi
fi
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ TEST_NAME := $(BIN)test_engine.out
else
CC := x86_64-w64-mingw32-gcc
NAME := $(BIN)engine.exe
SHARE_NAME := $(BIN)libengine.lib
SHARE_NAME := $(BIN)libengine.dll
TEST_NAME := $(BIN)test_engine.exe
endif

Expand Down Expand Up @@ -120,8 +120,8 @@ lib_debug:

## ANAYLIZE MODE

gprof: OPTI = -Og -pipe
gprof: CFLAGS = $(FLAGS) $(LDFLAGS) $(OPTI) $(IGNORE) -g3 -ggdb -pg
gprof: OPTI += -fno-omit-frame-pointer
gprof: CFLAGS = $(FLAGS) $(LDFLAGS) $(OPTI) $(IGNORE) -pg
gprof: fclean lib_gprof $(NAME)
@-$(ECHO) $(BOLD) $(GREEN)"\n► GPROF MODE 🤖 !"$(DEFAULT)

Expand Down
41,551 changes: 0 additions & 41,551 deletions assets/obj_examples/Jotaro_Kujo.obj

This file was deleted.

48 changes: 0 additions & 48 deletions assets/obj_examples/cubo.obj

This file was deleted.

Loading

0 comments on commit b7ad94b

Please sign in to comment.