alineat amb AEEA: cmake, makefile, clang-* i hooks

This commit is contained in:
2026-05-19 08:48:25 +02:00
parent 79d6e71fff
commit 851e6d35a2
11 changed files with 612 additions and 1423 deletions
-20
View File
@@ -1,20 +0,0 @@
# Makefile per a pack_resources
# © 2025 Orni Attack
CXX ?= c++
CXXFLAGS = -std=c++20 -Wall -Wextra -I../../source
TARGET = pack_resources
SOURCES = pack_resources.cpp \
../../source/core/resources/resource_pack.cpp
$(TARGET): $(SOURCES)
@echo "Compilant $(TARGET)..."
@$(CXX) $(CXXFLAGS) -o $(TARGET) $(SOURCES)
@echo "$(TARGET) compilat"
clean:
@rm -f $(TARGET)
@echo "✓ Netejat"
.PHONY: clean