Sha256: 010724b6926803afbb3e94f347028b26950da88c1329266cc2a5cf60eb11c23c

Contents?: true

Size: 452 Bytes

Versions: 3

Compression:

Stored size: 452 Bytes

Contents

# encoding: UTF-8
require 'version_info'

$LOAD_PATH << Pathname(__FILE__).dirname + 'lib'
require 'delphivm/version'

VersionInfo.install_tasks(:target => Delphivm)

class Build < Thor
  desc "ocra", "compile script with ocra"
  def ocra
    root = Pathname.getwd
    (root + 'out').mkpath
    system "ocra --icon delphi_PROJECTICON.ico --output ./out/DelphiVM.exe  --no-enc --gem-full --console bin\\delphivm **\\*.thor"
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
delphivm-0.8.1 Thorfile.thor
delphivm-0.8.0 Thorfile.thor
delphivm-0.7.7 Thorfile.thor