Sha256: e01289c882e70830109a8423c5293ed3590eca92e1d7b660afbc64dc078a1c4d

Contents?: true

Size: 1.69 KB

Versions: 14

Compression:

Stored size: 1.69 KB

Contents

def build_extension(name)
  #dir = File.join($rootdir, "extensions/#{name}/ext/platform/qt")
  qmake = "#{$qmake} -o Makefile -r -spec #{$qmake_spec} #{name}.pro CONFIG-=debug CONFIG+=release #{$qmakevars}"

  #Jake.run3(qmake           , dir)
  #Jake.run3("#{$make} all"  , dir)

  objects = []
  mkdir_p $tempdir unless File.exists? $tempdir

  mkdir_p $targetdir unless File.exist? $targetdir

    args = []
    args << "/M4"
    args << name + ".vcxproj"
    args << "\"Debug|Win32\""
    #cmdline = "\"" + $vcbuild + "\"" + ' ' + args.join(' ')
    puts qmake
    puts `#{qmake}`
	puts `#{$make} all`
    exit unless $? == 0

    build_target = File.join(ENV['PWD'], 'platform', 'win32', 'bin', 'extensions', 'rhoconnect-push')
    #cp_r build_target, File.join($tempdir, '..')

    cp_r File.join($tempdir, "Debug", name + ".lib"), $targetdir
    cp_r File.join($tempdir, "Release", name + ".lib"), $targetdir
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?
    $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('rhoconnect-push')
  end
end

task :default => "build:all"

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
rhodes-7.6.0 extensions/rhoconnect-push/ext/rhoconnect-push/platform/qt/Rakefile
rhodes-7.5.1 extensions/rhoconnect-push/ext/rhoconnect-push/platform/qt/Rakefile
rhodes-7.4.1 extensions/rhoconnect-push/ext/rhoconnect-push/platform/qt/Rakefile
rhodes-7.1.17 extensions/rhoconnect-push/ext/rhoconnect-push/platform/qt/Rakefile
rhodes-6.2.0 extensions/rhoconnect-push/ext/rhoconnect-push/platform/qt/Rakefile
rhodes-6.0.11 extensions/rhoconnect-push/ext/rhoconnect-push/platform/qt/Rakefile
rhodes-5.5.18 extensions/rhoconnect-push/ext/rhoconnect-push/platform/qt/Rakefile
rhodes-5.5.17 extensions/rhoconnect-push/ext/rhoconnect-push/platform/qt/Rakefile
rhodes-5.5.15 extensions/rhoconnect-push/ext/rhoconnect-push/platform/qt/Rakefile
rhodes-5.5.0.22 extensions/rhoconnect-push/ext/rhoconnect-push/platform/qt/Rakefile
rhodes-5.5.2 extensions/rhoconnect-push/ext/rhoconnect-push/platform/qt/Rakefile
rhodes-5.5.0.7 extensions/rhoconnect-push/ext/rhoconnect-push/platform/qt/Rakefile
rhodes-5.5.0.3 extensions/rhoconnect-push/ext/rhoconnect-push/platform/qt/Rakefile
rhodes-5.5.0 extensions/rhoconnect-push/ext/rhoconnect-push/platform/qt/Rakefile