[premake] Remove unneeded defines

This commit is contained in:
Margen67
2025-07-28 17:26:06 -07:00
parent 6b384dfe52
commit 03c0e70f8b
2 changed files with 3 additions and 9 deletions

View File

@@ -27,17 +27,15 @@ includedirs({
}) })
defines({ defines({
"_UNICODE",
"UNICODE",
"USE_CPP17", -- Tabulate "USE_CPP17", -- Tabulate
}) })
cdialect("C17") cdialect("C17")
cppdialect("C++20") cppdialect("C++20")
exceptionhandling("On") --exceptionhandling("On")
rtti("On") --rtti("On")
symbols("On") symbols("On")
characterset("Unicode") --characterset("Unicode")
fatalwarnings("All") fatalwarnings("All")
-- TODO(DrChat): Find a way to disable this on other architectures. -- TODO(DrChat): Find a way to disable this on other architectures.

View File

@@ -10,10 +10,6 @@ project("mspack")
"_LIB", "_LIB",
"HAVE_CONFIG_H", "HAVE_CONFIG_H",
}) })
removedefines({
"_UNICODE",
"UNICODE",
})
includedirs({ includedirs({
"mspack", "mspack",
}) })