Method: MTBuild::FrameworkConfiguration#configure_tasks

Defined in:
lib/mtbuild/framework_configuration.rb

#configure_tasksObject

Create the actual Rake tasks that will perform the configuration’s work



18
19
20
21
22
23
24
25
26
27
# File 'lib/mtbuild/framework_configuration.rb', line 18

def configure_tasks
  super
  desc "Framework '#{@parent_project.project_name}' with configuration '#{@configuration_name}'"
  new_task = framework_task @configuration_name => @object_files do |t|
    puts "found framework #{t.name}."
  end
  new_task.api_headers = @api_headers
  new_task.configuration_headers = @configuration_headers
  new_task.library_files = @object_files
end