[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({
"_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.

View File

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