Skip to content

Commit

Permalink
Force code pages to UTF8
Browse files Browse the repository at this point in the history
  • Loading branch information
fredemmott committed Jan 4, 2024
1 parent 88e28fc commit bdabee1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC" AND NOT $ENV{GITHUB_RUN_NUMBER})
endif()

function(add_cppremapper_executable TARGET)
add_executable(${TARGET} ${ARGN})
add_executable(${TARGET} ${ARGN} "${CMAKE_SOURCE_DIR}/lib/manifest.xml")
target_link_libraries(
"${TARGET}"
PRIVATE
Expand Down
9 changes: 9 additions & 0 deletions lib/manifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity name="com.fredemmott.openxr-layers-ui" version="6.0.0.0"/>
<application>
<windowsSettings>
<activeCodePage xmlns="http://schemas.microsoft.com/SMI/2019/WindowsSettings">UTF-8</activeCodePage>
</windowsSettings>
</application>
</assembly>

0 comments on commit bdabee1

Please sign in to comment.