From 10e2e70244f2bb221850d89242842105c6694113 Mon Sep 17 00:00:00 2001 From: shweet Date: Mon, 1 Dec 2025 20:42:47 -0500 Subject: [PATCH] apparently this will allow for utf-8? --- CMakeLists.txt | 2 +- Icon.rc | 1 - anm2ed.rc | 4 ++++ app.manifest | 8 ++++++++ 4 files changed, 13 insertions(+), 2 deletions(-) delete mode 100644 Icon.rc create mode 100644 anm2ed.rc create mode 100644 app.manifest diff --git a/CMakeLists.txt b/CMakeLists.txt index 0ce4f50..197d479 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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 diff --git a/Icon.rc b/Icon.rc deleted file mode 100644 index 0599d31..0000000 --- a/Icon.rc +++ /dev/null @@ -1 +0,0 @@ -IDI_ICON1 ICON DISCARDABLE "Icon.ico" diff --git a/anm2ed.rc b/anm2ed.rc new file mode 100644 index 0000000..a764099 --- /dev/null +++ b/anm2ed.rc @@ -0,0 +1,4 @@ +#include + +IDI_ICON1 ICON DISCARDABLE "Icon.ico" +CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "app.manifest" diff --git a/app.manifest b/app.manifest new file mode 100644 index 0000000..05b442e --- /dev/null +++ b/app.manifest @@ -0,0 +1,8 @@ + + + + + UTF-8 + + + \ No newline at end of file