Sha256: b050d2bf9c7384a46684aaa7e015f9afedfd92d2ab66e4c9a659863864d5d773

Contents?: true

Size: 1.06 KB

Versions: 8

Compression:

Stored size: 1.06 KB

Contents

def build_extension(name)
  require File.join($rootdir, 'lib/build/jake.rb')
  args = ['-o', 'Makefile', '-r', '-spec', $qmake_spec, "#{name}.pro", 'CONFIG-=debug', 'CONFIG+=release', 'CONFIG+=no_fixpath', "RHODES_ROOT='#{$rootdir}'", $qmakevars]
  puts Jake.run($qmake,args)
  fail "[qmake #{name}.pro]" unless $? == 0
  #puts Jake.run($make, ['clean'])
  fail "[make clean]" unless $? == 0
  puts Jake.run($make, ['all'])
  fail "[make all]" unless $? == 0
end

namespace "build" do
  task :config do
    $platform = ENV['RHO_PLATFORM']
    raise "RHO_PLATFORM is not set" if $platform.nil?
    $rootdir = ENV['RHO_ROOT']
    raise "RHO_ROOT is not set" if $rootdir.nil?
    $qmake = ENV['RHO_QMAKE']
    raise "RHO_QMAKE is not set" if $qmake.nil?
    $qmake_spec = ENV['RHO_QMAKE_SPEC']
    raise "RHO_QMAKE_SPEC is not set" if $qmake_spec.nil?
    $qmakevars = ENV['RHO_QMAKE_VARS']
    if $platform == 'win32'
      $make = 'nmake'
    else
      $make = 'make'
    end
  end

  task :all => :config do
    build_extension('Crosswalk')
  end
end

task :default => "build:all"

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
rho-tau-extensions-7.6.0 libs/crosswalk/ext/platform/qt/Rakefile
rho-tau-extensions-7.4.1 libs/crosswalk/ext/platform/qt/Rakefile
rho-tau-extensions-7.1.17 libs/crosswalk/ext/platform/qt/Rakefile
rho-tau-extensions-6.2.0 libs/crosswalk/ext/platform/qt/Rakefile
rho-tau-extensions-6.0.11 libs/crosswalk/ext/platform/qt/Rakefile
rho-tau-extensions-6.0.0 libs/crosswalk/ext/platform/qt/Rakefile
rho-tau-extensions-5.5.18 libs/crosswalk/ext/platform/qt/Rakefile
rho-tau-extensions-5.5.17 libs/crosswalk/ext/platform/qt/Rakefile