Commit d317ee14 authored by Reckordp's avatar Reckordp

Correct naming file from Mingw

parent 707933aa
...@@ -6,9 +6,9 @@ MRuby::Gem::Specification.new('mruby-io') do |spec| ...@@ -6,9 +6,9 @@ MRuby::Gem::Specification.new('mruby-io') do |spec|
spec.cc.include_paths << "#{build.root}/src" spec.cc.include_paths << "#{build.root}/src"
if for_windows? if for_windows?
spec.linker.libraries += ['Ws2_32'] spec.linker.libraries << "ws2_32"
#spec.cc.include_paths += ["C:/Windows/system/include"] #spec.cc.include_paths += ["C:/Windows/system/include"]
spec.linker.library_paths += ["C:/Windows/system"] spec.linker.library_paths << "C:/Windows/system"
end end
spec.add_test_dependency 'mruby-time', core: 'mruby-time' spec.add_test_dependency 'mruby-time', core: 'mruby-time'
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment