Update to modern project structure

Also, move progress tool into tests.
This commit is contained in:
2024-12-03 17:20:29 +01:00
parent 85a398ff3e
commit 72cc19c1b2
15 changed files with 578 additions and 101 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