From f3e2e355332eb4b7737feb5822327d59c19301cb Mon Sep 17 00:00:00 2001 From: WerWolv Date: Fri, 20 Nov 2020 16:50:21 +0100 Subject: [PATCH] Change icon id for GLFW to load it --- CMakeLists.txt | 2 +- res.rc | 1 - resource.rc | 1 + 3 files changed, 2 insertions(+), 2 deletions(-) delete mode 100644 res.rc create mode 100644 resource.rc diff --git a/CMakeLists.txt b/CMakeLists.txt index 813947e95..90c5001d1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -47,7 +47,7 @@ add_executable(ImHex libs/ImGui/source/imgui_impl_opengl3.cpp libs/ImGui/source/ImGuiFileBrowser.cpp - res.rc + resource.rc ) if (WIN32) diff --git a/res.rc b/res.rc deleted file mode 100644 index ff5fdbe49..000000000 --- a/res.rc +++ /dev/null @@ -1 +0,0 @@ -id ICON "icon.ico" \ No newline at end of file diff --git a/resource.rc b/resource.rc new file mode 100644 index 000000000..ba196a06e --- /dev/null +++ b/resource.rc @@ -0,0 +1 @@ +GLFW_ICON ICON icon.ico \ No newline at end of file