Migrate to latest project structure

This commit is contained in:
2025-01-03 14:19:54 +01:00
parent b174130490
commit 10a2fccbe2
11 changed files with 421 additions and 98 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