summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2025-09-15 17:16:48 -0400
committerpommicket <pommicket@gmail.com>2025-09-15 17:16:48 -0400
commit2b519f42fec913763abd0d967301916e763e770a (patch)
treec7268e64d6c0f3d7db7ac7134d20398a54ff8e36 /Makefile
parentdc989291eb6b9b20a25a78f35d6f04968a88ed0b (diff)
Better testing framework
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 5b495b4..8d8474b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,8 @@
-PROFILE ?= release
+PROFILE ?= Release
BUILD_DIR ?= $(PROFILE)
__build:
mkdir -p $(BUILD_DIR)
- P=`pwd` && cd $(BUILD_DIR) && cmake $$P
+ P=`pwd` && cd $(BUILD_DIR) && cmake -DCMAKE_BUILD_TYPE=$(PROFILE) -DCMAKE_EXPORT_COMPILE_COMMANDS=1 $$P
make -j16 -C $(BUILD_DIR)
.PHONY: __build