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 293 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 300 def build? build.nil? ? true : build end
build_concurrently?()
click to toggle source
# File lib/gnome2/rake/external-package.rb, line 340 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 328 def built_file super || nil end
cc_args()
click to toggle source
Calls superclass method
# File lib/gnome2/rake/external-package.rb, line 320 def cc_args super || [] end
cmake_args()
click to toggle source
Calls superclass method
# File lib/gnome2/rake/external-package.rb, line 316 def cmake_args super || [] end
configure_args()
click to toggle source
Calls superclass method
# File lib/gnome2/rake/external-package.rb, line 312 def configure_args super || [] end
gobject_introspection_compiler_split_args?()
click to toggle source
# File lib/gnome2/rake/external-package.rb, line 348 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 304 def include_paths super || [] end
library_paths()
click to toggle source
Calls superclass method
# File lib/gnome2/rake/external-package.rb, line 308 def library_paths super || [] end
need_autogen?()
click to toggle source
# File lib/gnome2/rake/external-package.rb, line 332 def need_autogen? need_autogen.nil? ? false : need_autogen end
need_autoreconf?()
click to toggle source
# File lib/gnome2/rake/external-package.rb, line 336 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 324 def patches super || [] end
use_cc_environment_variable?()
click to toggle source
# File lib/gnome2/rake/external-package.rb, line 344 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 352 def use_gobject_introspection? use_gobject_introspection.nil? ? true : use_gobject_introspection end