class GNOME2::Rake::ExternalPackage::WindowsConfiguration

Public Class Methods

new(properties) click to toggle source
Calls superclass method
# File lib/gnome2/rake/external-package.rb, line 127
def initialize(properties)
  super()
  properties.each do |key, value|
    send("#{key}=", value)
  end
end

Public Instance Methods

build?() click to toggle source
# File lib/gnome2/rake/external-package.rb, line 134
def build?
  build.nil? ? true : build
end
build_concurrently?() click to toggle source
# File lib/gnome2/rake/external-package.rb, line 174
def build_concurrently?
  build_concurrently.nil? ? true : build_concurrently
end
built_file() click to toggle source
Calls superclass method
# File lib/gnome2/rake/external-package.rb, line 162
def built_file
  super || nil
end
cc_args() click to toggle source
Calls superclass method
# File lib/gnome2/rake/external-package.rb, line 154
def cc_args
  super || []
end
cmake_args() click to toggle source
Calls superclass method
# File lib/gnome2/rake/external-package.rb, line 150
def cmake_args
  super || []
end
configure_args() click to toggle source
Calls superclass method
# File lib/gnome2/rake/external-package.rb, line 146
def configure_args
  super || []
end
gobject_introspection_compiler_split_args?() click to toggle source
# File lib/gnome2/rake/external-package.rb, line 182
def gobject_introspection_compiler_split_args?
  gobject_introspection_compiler_split_args
end
include_paths() click to toggle source
Calls superclass method
# File lib/gnome2/rake/external-package.rb, line 138
def include_paths
  super || []
end
library_paths() click to toggle source
Calls superclass method
# File lib/gnome2/rake/external-package.rb, line 142
def library_paths
  super || []
end
need_autogen?() click to toggle source
# File lib/gnome2/rake/external-package.rb, line 166
def need_autogen?
  need_autogen.nil? ? false : need_autogen
end
need_autoreconf?() click to toggle source
# File lib/gnome2/rake/external-package.rb, line 170
def need_autoreconf?
  need_autoreconf.nil? ? false : need_autoreconf
end
patches() click to toggle source
Calls superclass method
# File lib/gnome2/rake/external-package.rb, line 158
def patches
  super || []
end
use_cc_environment_variable?() click to toggle source
# File lib/gnome2/rake/external-package.rb, line 178
def use_cc_environment_variable?
  use_cc_environment_variable.nil? ? true : use_cc_environment_variable
end