apparently this will allow for utf-8?

This commit is contained in:
2025-12-01 20:42:47 -05:00
parent 086697b0dc
commit 10e2e70244
4 changed files with 13 additions and 2 deletions

View File

@@ -112,7 +112,7 @@ endif()
if (WIN32)
enable_language(RC)
target_sources(${PROJECT_NAME} PRIVATE Icon.rc)
target_sources(${PROJECT_NAME} PRIVATE anm2ed.rc)
target_compile_options(${PROJECT_NAME} PRIVATE /EHsc)
target_link_options(${PROJECT_NAME} PRIVATE /STACK:0xffffff)
target_link_options(${PROJECT_NAME} PRIVATE

View File

@@ -1 +0,0 @@
IDI_ICON1 ICON DISCARDABLE "Icon.ico"

4
anm2ed.rc Normal file
View File

@@ -0,0 +1,4 @@
#include <windows.h>
IDI_ICON1 ICON DISCARDABLE "Icon.ico"
CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "app.manifest"

8
app.manifest Normal file
View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<application>
<windowsSettings>
<activeCodePage>UTF-8</activeCodePage>
</windowsSettings>
</application>
</assembly>