Sha256: 98c115d7221c71d8b558ca88402de90c257349f151b0f4d551b3cac9f92cc75a
Contents?: true
Size: 1.38 KB
Versions: 2
Compression:
Stored size: 1.38 KB
Contents
require 'fileutils' USE_STLPORT = true def build_extension(name, arch) objects = [] mkdir_p $tempdir unless File.exists? $tempdir mkdir_p $targetdir unless File.exist? $targetdir if ENV['RHO_PLATFORM'] == 'wm' args = [] args << "/M4" args << name + ".vcproj" args << "\"Release|#{$sdk}\"" cmdline = "\"" + $vcbuild + "\"" + ' ' + args.join(' ') puts cmdline puts `#{cmdline}` exit unless $? == 0 cp_r File.join($tempdir, "Release", name + ".lib"), $targetdir elsif ENV['RHO_PLATFORM'] == 'win32' args = [] args << "/M4" args << name + ".vcxproj" args << "\"Debug|Win32\"" cmdline = "\"" + $vcbuild + "\"" + ' ' + args.join(' ') puts cmdline puts `#{cmdline}` exit unless $? == 0 cp_r File.join($tempdir, "Debug", name + ".lib"), $targetdir end end namespace "build" do task :config do $targetdir = ENV['TARGET_TEMP_DIR'] raise "TARGET_TEMP_DIR is not set" if $targetdir.nil? $tempdir = ENV['TEMP_FILES_DIR'] raise "TEMP_FILES_DIR is not set" if $tempdir.nil? $rootdir = ENV['RHO_ROOT'] raise "RHO_ROOT is not set" if $rootdir.nil? $vcbuild = ENV['VCBUILD'] raise "VCBUILD is not set" if $vcbuild.nil? $sdk = ENV['SDK'] raise "SDK is not set" if $sdk.nil? end task :all => :config do build_extension('webkit', $arch) end end task :default => "build:all"
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rho-tau-extensions-5.5.18 | libs/webkit/ext/wm/Rakefile |
rho-tau-extensions-5.5.17 | libs/webkit/ext/wm/Rakefile |