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 318 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 325 def build? build.nil? ? true : build end
build_concurrently?()
click to toggle source
# File lib/gnome2/rake/external-package.rb, line 369 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 357 def built_file super || nil end
cc_args()
click to toggle source
Calls superclass method
# File lib/gnome2/rake/external-package.rb, line 349 def cc_args super || [] end
cmake_args()
click to toggle source
Calls superclass method
# File lib/gnome2/rake/external-package.rb, line 345 def cmake_args super || [] end
configure_args()
click to toggle source
Calls superclass method
# File lib/gnome2/rake/external-package.rb, line 337 def configure_args super || [] end
gobject_introspection_compiler_split_args?()
click to toggle source
# File lib/gnome2/rake/external-package.rb, line 377 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 329 def include_paths super || [] end
library_paths()
click to toggle source
Calls superclass method
# File lib/gnome2/rake/external-package.rb, line 333 def library_paths super || [] end
meson_args()
click to toggle source
Calls superclass method
# File lib/gnome2/rake/external-package.rb, line 341 def meson_args super || [] end
need_autogen?()
click to toggle source
# File lib/gnome2/rake/external-package.rb, line 361 def need_autogen? need_autogen.nil? ? false : need_autogen end
need_autoreconf?()
click to toggle source
# File lib/gnome2/rake/external-package.rb, line 365 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 353 def patches super || [] end
use_cc_environment_variable?()
click to toggle source
# File lib/gnome2/rake/external-package.rb, line 373 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 381 def use_gobject_introspection? use_gobject_introspection.nil? ? true : use_gobject_introspection end