mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* win32/resource.rb: default rubyw icon to ruby.ico, and let DLL also
include them. * win32/resource.rb: include winver.h for older WindowsCE. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6023 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
3b79d34d99
commit
b47d416046
2 changed files with 11 additions and 3 deletions
|
@ -30,13 +30,13 @@ end
|
|||
|
||||
ruby_icon = rubyw_icon = nil
|
||||
[$ruby_name, 'ruby'].each do |i|
|
||||
if i = icons.delete(i)
|
||||
if i = icons[i]
|
||||
ruby_icon = "1 ICON DISCARDABLE "+i.dump+"\n"
|
||||
break
|
||||
end
|
||||
end
|
||||
[$rubyw_name, 'rubyw'].each do |i|
|
||||
if i = icons.delete(i)
|
||||
if i = icons[i]
|
||||
rubyw_icon = "1 ICON DISCARDABLE "+i.dump+"\n"
|
||||
break
|
||||
end
|
||||
|
@ -48,7 +48,7 @@ end
|
|||
|
||||
[ # base name extension file type icons
|
||||
[$ruby_name, CONFIG["EXEEXT"], 'VFT_APP', ruby_icon],
|
||||
[$rubyw_name, CONFIG["EXEEXT"], 'VFT_APP', rubyw_icon],
|
||||
[$rubyw_name, CONFIG["EXEEXT"], 'VFT_APP', rubyw_icon || ruby_icon],
|
||||
[$so_name, '.dll', 'VFT_DLL', dll_icons],
|
||||
].each do |base, ext, type, icons|
|
||||
open(base + '.rc', "w") { |f|
|
||||
|
@ -57,6 +57,7 @@ end
|
|||
f.print <<EOF
|
||||
#ifndef __BORLANDC__
|
||||
#include <windows.h>
|
||||
#include <winver.h>
|
||||
#endif
|
||||
|
||||
#{icons}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue