| CODENOTIFIER | HelpYou are not signed inSign in |
Project: IronRuby
Revision: 131
Author: sanxiyn
Date: 14 Aug 2008 16:18:28
Changes:Diff:| ... | ...@@ -238,7 +238,7 @@ | |
| 238 | 238 | IronRuby.source_context do |
| 239 | 239 | compile :dlr_core, :references => ['!System.dll', '!System.Configuration.dll'], :switches => ['target:library', 'define:MICROSOFT_SCRIPTING_CORE'], :output => 'Microsoft.Scripting.Core.dll' |
| 240 | 240 | resources = { Pathname.new('math') + 'MathResources.resx' => Pathname.new('Microsoft.Scripting.Math.MathResources.resources') } |
| 241 | compile :dlr_libs, :references => ['Microsoft.Scripting.Core.dll', '!System.dll'], :switches => ['target:library'], :resources => resources, :output => 'Microsoft.Scripting.dll' | |
| 241 | compile :dlr_libs, :references => ['Microsoft.Scripting.Core.dll', '!System.dll', '!System.Configuration.dll'], :switches => ['target:library'], :resources => resources, :output => 'Microsoft.Scripting.dll' | |
| 242 | 242 | end |
| 243 | 243 | end |
| 244 | 244 | |
| ... | ...@@ -252,7 +252,7 @@ | |
| 252 | 252 | desc "compile IronRuby.dll" |
| 253 | 253 | task :compile_ruby => [:compile_dlr] do |
| 254 | 254 | IronRuby.source_context do |
| 255 | compile :ironruby, :references => ['Microsoft.Scripting.Core.dll', 'Microsoft.Scripting.dll', '!System.dll'], :switches => ['target:library'], :output => 'IronRuby.dll' | |
| 255 | compile :ironruby, :references => ['Microsoft.Scripting.Core.dll', 'Microsoft.Scripting.dll', '!System.dll', '!System.Configuration.dll'], :switches => ['target:library'], :output => 'IronRuby.dll' | |
| 256 | 256 | end |
| 257 | 257 | end |
| 258 | 258 | |
| ... | ...@@ -289,7 +289,7 @@ | |
| 289 | 289 | desc "compile Yaml" |
| 290 | 290 | task :compile_yaml => [:compile_libraries] do |
| 291 | 291 | IronRuby.source_context do |
| 292 | compile :yaml, :references => ['Microsoft.Scripting.Core.dll', 'Microsoft.Scripting.dll', 'IronRuby.dll', 'IronRuby.Libraries.dll'], :switches => ['target:library'], :output => 'IronRuby.Libraries.Yaml.dll' | |
| 292 | compile :yaml, :references => ['Microsoft.Scripting.Core.dll', 'Microsoft.Scripting.dll', 'IronRuby.dll', 'IronRuby.Libraries.dll', '!System.dll'], :switches => ['target:library'], :output => 'IronRuby.Libraries.Yaml.dll' | |
| 293 | 293 | end |
| 294 | 294 | end |
| 295 | 295 |