We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47a70b3 commit 858c650Copy full SHA for 858c650
examples/CMakeLists.txt
@@ -46,7 +46,14 @@ function(ztd_cuneicode_example_options example_target)
46
PRIVATE
47
${CMAKE_CURRENT_SOURCE_DIR}/include
48
)
49
-
+ if (MINGW)
50
+ target_compile_options(${example_target}
51
+ PRIVATE
52
+ -Wno-format
53
+ -Wno-format-diag
54
+ -Wno-format-extra-args
55
+ )
56
+ endif()
57
if (NOT DEFINED CUNEICODE_EXAMPLE_OPT_TEST)
58
add_test(NAME ${example_target} COMMAND ${example_target})
59
elseif (${CUNEICODE_EXAMPLE_OPT_TEST})
0 commit comments