Fix clangd

This commit is contained in:
2026-07-08 15:41:53 +01:00
parent 8f73f09b58
commit 7a9b44a735
5 changed files with 9 additions and 5 deletions
+2 -2
View File
@@ -10,8 +10,8 @@ PCH_DEBUG := $(OBJ_DIR)/debug/pch.h.gch
PCH_RELEASE := $(OBJ_DIR)/release/pch.h.gch
CCACHE := ccache
CXX := $(CCACHE) clang++
CC := $(CCACHE) clang
CXX := $(CCACHE) $(shell which clang++)
CC := $(CCACHE) $(shell which clang)
# ---------------- SDL3 ----------------