From 03c0e70f8b0ee627304fd1d2b63af52fcd2c51f1 Mon Sep 17 00:00:00 2001 From: Margen67 Date: Mon, 28 Jul 2025 17:26:06 -0700 Subject: [PATCH] [premake] Remove unneeded defines --- premake5.lua | 8 +++----- third_party/mspack.lua | 4 ---- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/premake5.lua b/premake5.lua index 6a4c9c986..be06b9a14 100644 --- a/premake5.lua +++ b/premake5.lua @@ -27,17 +27,15 @@ includedirs({ }) defines({ - "_UNICODE", - "UNICODE", "USE_CPP17", -- Tabulate }) cdialect("C17") cppdialect("C++20") -exceptionhandling("On") -rtti("On") +--exceptionhandling("On") +--rtti("On") symbols("On") -characterset("Unicode") +--characterset("Unicode") fatalwarnings("All") -- TODO(DrChat): Find a way to disable this on other architectures. diff --git a/third_party/mspack.lua b/third_party/mspack.lua index 0b4f64e83..ac43fc480 100644 --- a/third_party/mspack.lua +++ b/third_party/mspack.lua @@ -10,10 +10,6 @@ project("mspack") "_LIB", "HAVE_CONFIG_H", }) - removedefines({ - "_UNICODE", - "UNICODE", - }) includedirs({ "mspack", })