added ternary trie implementation

This commit is contained in:
Jef Roosens 2022-11-15 16:21:27 +01:00
parent d7f95f0fbf
commit 0b97f124c5
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
7 changed files with 698 additions and 3 deletions

View file

@ -20,6 +20,15 @@ $(BUILD_DIR)/Debug/Makefile: CMakeLists.txt
build: cmake
@ make -C '$(BUILD_DIR)/Debug'
.PHONY: cmake-release
cmake-release: $(BUILD_DIR)/Release/Makefile
$(BUILD_DIR)/Release/Makefile: CMakeLists.txt
@ cmake -B'$(BUILD_DIR)/Release' -DCMAKE_BUILD_TYPE=Release .
.PHONY: prod
prod: cmake-release
@ make -C '$(BUILD_DIR)/Release'
.PHONY: run
run: build
@ ./build/Debug/lander