Sha256: 2ef516f26e7dd220decc90c2b9ec24d22c06b54e23b4d4037ee9b5a0af484441

Contents?: true

Size: 1.34 KB

Versions: 9

Compression:

Stored size: 1.34 KB

Contents

# use rake-compiler for building the extension
require 'rake/extensiontask'
require 'rake/extensioncompiler'

# NOTE: version used by cross compilation of Windows native extension
# It do not affect compilation under other operating systems
# The version indicated is the minimum DLL suggested for correct functionality
BINARY_VERSION = "3.7.17"
URL_VERSION    = "3071700"
URL_PATH       = "/2013"

# build sqlite3_native C extension
RUBY_EXTENSION = Rake::ExtensionTask.new('sqlite3_native', HOE.spec) do |ext|
  # where to locate the extension
  ext.ext_dir = 'ext/sqlite3'

  # where native extension will be copied (matches makefile)
  ext.lib_dir = "lib/sqlite3"

  # clean binary folders always
  CLEAN.include("#{ext.lib_dir}/?.?")

  # automatically add build options to avoid need of manual input
  if RUBY_PLATFORM =~ /mswin|mingw/ then
    # define target for extension (supporting fat binaries)
    RUBY_VERSION =~ /(\d+\.\d+)/
    ext.lib_dir = "lib/sqlite3/#{$1}"
    ext.config_options << "--enable-local"
  else

    # detect cross-compiler available
    begin
      Rake::ExtensionCompiler.mingw_host
      ext.cross_compile = true
      ext.cross_platform = ['i386-mswin32-60', 'i386-mingw32', 'x64-mingw32']
    rescue RuntimeError
      # noop
    end
  end
end

# ensure things are compiled prior testing
task :test => [:compile]

# vim: syntax=ruby

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
openaustralia-sqlite3-1.0.0 tasks/native.rake
sqlite3-1.3.9-x86-mswin32-60 tasks/native.rake
sqlite3-1.3.9-x86-mingw32 tasks/native.rake
sqlite3-1.3.9-x64-mingw32 tasks/native.rake
sqlite3-1.3.9 tasks/native.rake
sqlite3-1.3.8-x64-mingw32 tasks/native.rake
sqlite3-1.3.8-x86-mingw32 tasks/native.rake
sqlite3-1.3.8-x86-mswin32-60 tasks/native.rake
sqlite3-1.3.8 tasks/native.rake