From e713e82e7a6c4b07d624839c36cdacec49f46277 Mon Sep 17 00:00:00 2001 From: PQCraft <0456523@gmail.com> Date: Thu, 20 Jul 2023 12:19:46 -0400 Subject: [PATCH] Add features to Makefile - Added XBE_TITLEID, XBE_REGION, and XBE_VERSION to take advantage of the new Cxbe features --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bfa98d086..58cfc69f6 100644 --- a/Makefile +++ b/Makefile @@ -98,7 +98,8 @@ DEPS += $(filter %.cpp.d, $(SRCS:.cpp=.cpp.d)) $(OUTPUT_DIR)/default.xbe: main.exe $(OUTPUT_DIR) $(CXBE) @echo "[ CXBE ] $@" - $(VE)$(CXBE) -OUT:$@ -TITLE:$(XBE_TITLE) $< $(QUIET) + $(VE)$(CXBE) -OUT:$@ -TITLE:$(XBE_TITLE) -TITLEID:$(XBE_TITLEID) \ + -REGION:$(XBE_REGION) -VERSION:$(XBE_VERSION) $< $(QUIET) $(OUTPUT_DIR): @mkdir -p $(OUTPUT_DIR);