Disable libfmt unicode support for annoying windows reasons

This commit is contained in:
Eidolon 2025-08-25 21:28:53 -05:00
parent 7196ac4ee3
commit 2346ad674c

View file

@ -6,4 +6,5 @@ add_library(fmt INTERFACE)
target_include_directories(fmt INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}/include")
target_compile_features(fmt INTERFACE cxx_std_11)
target_compile_definitions(fmt INTERFACE -DFMT_HEADER_ONLY)
target_compile_definitions(fmt INTERFACE "-DFMT_UNICODE=0")
add_library(fmt::fmt-header-only ALIAS fmt)