Fix non-breakable spaces accidentally committed in parent commit

Replace them with normal spaces to prevent CMake from giving an
incomprehensible error.
This commit is contained in:
Vadim Zeitlin 2023-08-24 13:25:29 +02:00
parent 570af08ea1
commit e6ad7bc077

View file

@ -801,7 +801,7 @@ function(wx_add name group)
add_executable(${target_name} ${exe_type} ${src_files}) add_executable(${target_name} ${exe_type} ${src_files})
if (DEFINED wxUSE_DPI_AWARE_MANIFEST_VALUE) if (DEFINED wxUSE_DPI_AWARE_MANIFEST_VALUE)
            set_target_properties(${target_name} PROPERTIES LINK_FLAGS "/MANIFEST:NO") set_target_properties(${target_name} PROPERTIES LINK_FLAGS "/MANIFEST:NO")
target_compile_definitions(${target_name} PRIVATE wxUSE_DPI_AWARE_MANIFEST=${wxUSE_DPI_AWARE_MANIFEST_VALUE}) target_compile_definitions(${target_name} PRIVATE wxUSE_DPI_AWARE_MANIFEST=${wxUSE_DPI_AWARE_MANIFEST_VALUE})
endif() endif()
endif() endif()