diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | icon.rc | 3 | ||||
-rw-r--r-- | kephra.manifest | 22 |
3 files changed, 26 insertions, 1 deletions
@@ -15,7 +15,7 @@ all : kephra.exe starter_xsi.c: $(PERL) -MExtUtils::Embed -e xsinit -- -o $@ -icon.o : icon.rc kephra_proton.ico +icon.o : icon.rc kephra_proton.ico kephra.manifest $(RC) $< $@ kephra.exe : starter.o starter_xsi.o icon.o @@ -1 +1,4 @@ +#include <winuser.h> + DEFAULT ICON "kephra_proton.ico" +1 RT_MANIFEST "kephra.manifest" diff --git a/kephra.manifest b/kephra.manifest new file mode 100644 index 0000000..876a8e1 --- /dev/null +++ b/kephra.manifest @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> + <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> + <assemblyIdentity + processorArchitecture="x86" + version="5.1.0.0" + type="win32" + name="Controls" + /> + <description>MOM Client Application</description> + <dependency> + <dependentAssembly> + <assemblyIdentity + type="win32" + name="Microsoft.Windows.Common-Controls" + version="6.0.0.0" + publicKeyToken="6595b64144ccf1df" + language="*" + processorArchitecture="x86" + /> + </dependentAssembly> + </dependency> + </assembly> |