From ca6e996322f2363281958c214087051d8e2dc53e Mon Sep 17 00:00:00 2001 From: Ondrej Novak Date: Sun, 23 Feb 2025 15:14:01 +0100 Subject: [PATCH] remove /DLOGFILE from cmake --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e270ac8..f937be8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ project(skeldal) find_package(SDL2 REQUIRED) if (MSVC) - add_compile_options(/W4 /EHsc /DNOMINMAX /J /DLOGFILE) + add_compile_options(/W4 /EHsc /DNOMINMAX /J) set(STANDARD_LIBRARIES "") else() add_compile_options(-Wall -Wextra -Werror -Wno-unused-result -Wno-unused-parameter -Wno-unused-value -Wno-extern-c-compat -funsigned-char)