Migrate to latest project structure

This commit is contained in:
2025-01-08 12:30:55 +01:00
parent c3106d9ebc
commit f73fe7fae2
11 changed files with 181 additions and 75 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