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 239 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 246 def build? build.nil? ? true : build end
build_concurrently?()
click to toggle source
# File lib/gnome2/rake/external-package.rb, line 286 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 274 def built_file super || nil end
cc_args()
click to toggle source
Calls superclass method
# File lib/gnome2/rake/external-package.rb, line 266 def cc_args super || [] end
cmake_args()
click to toggle source
Calls superclass method
# File lib/gnome2/rake/external-package.rb, line 262 def cmake_args super || [] end
configure_args()
click to toggle source
Calls superclass method
# File lib/gnome2/rake/external-package.rb, line 258 def configure_args super || [] end
gobject_introspection_compiler_split_args?()
click to toggle source
# File lib/gnome2/rake/external-package.rb, line 294 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 250 def include_paths super || [] end
library_paths()
click to toggle source
Calls superclass method
# File lib/gnome2/rake/external-package.rb, line 254 def library_paths super || [] end
need_autogen?()
click to toggle source
# File lib/gnome2/rake/external-package.rb, line 278 def need_autogen? need_autogen.nil? ? false : need_autogen end
need_autoreconf?()
click to toggle source
# File lib/gnome2/rake/external-package.rb, line 282 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 270 def patches super || [] end
use_cc_environment_variable?()
click to toggle source
# File lib/gnome2/rake/external-package.rb, line 290 def use_cc_environment_variable? use_cc_environment_variable.nil? ? true : use_cc_environment_variable end
use_gobject_introspection?()
click to toggle source
# File lib/gnome2/rake/external-package.rb, line 298 def use_gobject_introspection? use_gobject_introspection.nil? ? true : use_gobject_introspection end