ci create + some fixes
Some checks are pending
Pipeline / ci (push) Waiting to run

This commit is contained in:
Wingleszy
2026-05-14 01:39:55 +03:00
parent 17301a9cf8
commit 52fc63054b
4 changed files with 52 additions and 4 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
CC = g++
all: main
main: project_cpp/main.cpp tests/tests.cpp
$(CC) -o main
test: tests/tests.cpp
$(CC) tests/tests.cpp -o test
./test
clean:
rm -f main test