Migrate to latest project structure

Bumped version to 1.0.1
This commit is contained in:
2025-01-08 13:30:07 +01:00
parent 45b5ba897b
commit 951a3a45ad
13 changed files with 477 additions and 50 deletions

6
tests/postmake.make Normal file
View File

@@ -0,0 +1,6 @@
$(BUILDDIR)/%.o: ../src/%.cpp
ifeq ($(PRECOMPILE), 1)
$(CXX) $(CXXFLAGS) -o $@ -include precomp.hpp -MMD -MP -MT $@ -MF $(BUILDDIR)/$*.dep -c $<
else
$(CXX) $(CXXFLAGS) -o $@ -MMD -MP -MT $@ -MF $(BUILDDIR)/$*.dep -c $<
endif