From dc989291eb6b9b20a25a78f35d6f04968a88ed0b Mon Sep 17 00:00:00 2001 From: pommicket Date: Mon, 15 Sep 2025 15:11:13 -0400 Subject: Switch to cmake meson builds "thin" archives by default (this is basically undocumented). You can avoid this by setting install: true supposedly. Whatever I hate it anyways. --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 34e5195..5b495b4 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,8 @@ PROFILE ?= release BUILD_DIR ?= $(PROFILE) __build: - @[ -d $(BUILD_DIR) ] || meson setup --buildtype $(PROFILE) $(BUILD_DIR) - ninja -C $(BUILD_DIR) + mkdir -p $(BUILD_DIR) + P=`pwd` && cd $(BUILD_DIR) && cmake $$P + make -j16 -C $(BUILD_DIR) .PHONY: __build -- cgit v1.2.3