Class: GNOME::Rake::ExternalPackage::WindowsConfiguration
- Inherits:
-
Struct
- Object
- Struct
- GNOME::Rake::ExternalPackage::WindowsConfiguration
- Defined in:
- lib/gnome/rake/external-package.rb
Instance Attribute Summary collapse
-
#built_file ⇒ Object
readonly
Returns the value of attribute built_file.
-
#cc_args ⇒ Object
readonly
Returns the value of attribute cc_args.
-
#cmake_args ⇒ Object
readonly
Returns the value of attribute cmake_args.
-
#configure_args ⇒ Object
readonly
Returns the value of attribute configure_args.
-
#include_paths ⇒ Object
readonly
Returns the value of attribute include_paths.
-
#library_paths ⇒ Object
readonly
Returns the value of attribute library_paths.
-
#make_args ⇒ Object
readonly
Returns the value of attribute make_args.
-
#meson_args ⇒ Object
readonly
Returns the value of attribute meson_args.
-
#patches ⇒ Object
readonly
Returns the value of attribute patches.
Instance Method Summary collapse
- #build? ⇒ Boolean
- #build_concurrently? ⇒ Boolean
- #force_to_disable_deplibs_check? ⇒ Boolean
- #gobject_introspection_compiler_split_args? ⇒ Boolean
-
#initialize(properties) ⇒ WindowsConfiguration
constructor
A new instance of WindowsConfiguration.
- #need_autogen? ⇒ Boolean
- #need_autoreconf? ⇒ Boolean
- #use_cc_environment_variable? ⇒ Boolean
- #use_gobject_introspection? ⇒ Boolean
Constructor Details
#initialize(properties) ⇒ WindowsConfiguration
Returns a new instance of WindowsConfiguration.
135 136 137 138 139 140 |
# File 'lib/gnome/rake/external-package.rb', line 135 def initialize(properties) super() properties.each do |key, value| send("#{key}=", value) end end |
Instance Attribute Details
#built_file ⇒ Object
Returns the value of attribute built_file
118 119 120 |
# File 'lib/gnome/rake/external-package.rb', line 118 def built_file @built_file end |
#cc_args ⇒ Object
Returns the value of attribute cc_args
118 119 120 |
# File 'lib/gnome/rake/external-package.rb', line 118 def cc_args @cc_args end |
#cmake_args ⇒ Object
Returns the value of attribute cmake_args
118 119 120 |
# File 'lib/gnome/rake/external-package.rb', line 118 def cmake_args @cmake_args end |
#configure_args ⇒ Object
Returns the value of attribute configure_args
118 119 120 |
# File 'lib/gnome/rake/external-package.rb', line 118 def configure_args @configure_args end |
#include_paths ⇒ Object
Returns the value of attribute include_paths
118 119 120 |
# File 'lib/gnome/rake/external-package.rb', line 118 def include_paths @include_paths end |
#library_paths ⇒ Object
Returns the value of attribute library_paths
118 119 120 |
# File 'lib/gnome/rake/external-package.rb', line 118 def library_paths @library_paths end |
#make_args ⇒ Object
Returns the value of attribute make_args
118 119 120 |
# File 'lib/gnome/rake/external-package.rb', line 118 def make_args @make_args end |
#meson_args ⇒ Object
Returns the value of attribute meson_args
118 119 120 |
# File 'lib/gnome/rake/external-package.rb', line 118 def meson_args @meson_args end |
#patches ⇒ Object
Returns the value of attribute patches
118 119 120 |
# File 'lib/gnome/rake/external-package.rb', line 118 def patches @patches end |
Instance Method Details
#build? ⇒ Boolean
142 143 144 |
# File 'lib/gnome/rake/external-package.rb', line 142 def build? build.nil? ? true : build end |
#build_concurrently? ⇒ Boolean
198 199 200 |
# File 'lib/gnome/rake/external-package.rb', line 198 def build_concurrently? build_concurrently.nil? ? true : build_concurrently end |
#force_to_disable_deplibs_check? ⇒ Boolean
190 191 192 193 194 195 196 |
# File 'lib/gnome/rake/external-package.rb', line 190 def force_to_disable_deplibs_check? if force_to_disable_deplibs_check.nil? false else force_to_disable_deplibs_check end end |
#gobject_introspection_compiler_split_args? ⇒ Boolean
206 207 208 |
# File 'lib/gnome/rake/external-package.rb', line 206 def gobject_introspection_compiler_split_args? gobject_introspection_compiler_split_args end |
#need_autogen? ⇒ Boolean
182 183 184 |
# File 'lib/gnome/rake/external-package.rb', line 182 def need_autogen? need_autogen.nil? ? false : need_autogen end |
#need_autoreconf? ⇒ Boolean
186 187 188 |
# File 'lib/gnome/rake/external-package.rb', line 186 def need_autoreconf? need_autoreconf.nil? ? false : need_autoreconf end |
#use_cc_environment_variable? ⇒ Boolean
202 203 204 |
# File 'lib/gnome/rake/external-package.rb', line 202 def use_cc_environment_variable? use_cc_environment_variable.nil? ? true : use_cc_environment_variable end |
#use_gobject_introspection? ⇒ Boolean
210 211 212 |
# File 'lib/gnome/rake/external-package.rb', line 210 def use_gobject_introspection? use_gobject_introspection.nil? ? true : use_gobject_introspection end |