From 05d0eaf5fc4947081ae743a58e8675991e3f2422 Mon Sep 17 00:00:00 2001 From: Perttu Ahola Date: Sun, 31 Jul 2011 00:39:43 +0300 Subject: added windows icon --- minetest-icon.ico | Bin 0 -> 9662 bytes src/CMakeLists.txt | 5 +++++ src/winresource.rc | 6 ++++++ 3 files changed, 11 insertions(+) create mode 100644 minetest-icon.ico create mode 100644 src/winresource.rc diff --git a/minetest-icon.ico b/minetest-icon.ico new file mode 100644 index 000000000..82af67bf9 Binary files /dev/null and b/minetest-icon.ico differ diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 8ce69b2ad..9bb266784 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -128,6 +128,11 @@ set(common_SRCS base64.cpp ) +# This gives us the icon +if(WIN32 AND MSVC) + set(common_SRCS ${common_SRCS} winresource.rc) +endif() + # Client sources set(minetest_SRCS ${common_SRCS} diff --git a/src/winresource.rc b/src/winresource.rc new file mode 100644 index 000000000..24ec445aa --- /dev/null +++ b/src/winresource.rc @@ -0,0 +1,6 @@ +#include +#include +#include +LANGUAGE 0, SUBLANG_NEUTRAL +130 ICON "..\\minetest-icon.ico" +//131 BITMAP "..\\minetest-icon.bmp" -- cgit v1.2.3