class Rake::StaticLibraryTask

This is a top-level Rake task for creating a static library

Attributes

api_headers[RW]

API header location for the static library

configuration_headers[RW]

Configuration header location for the static library

library_files[RW]

The static library output file(s)

Public Class Methods

new(task_name, app) click to toggle source
Calls superclass method
# File lib/mtbuild/staticlibrary_task.rb, line 17
def initialize(task_name, app)
  super
  @api_headers = []
  @configuration_headers = []
  @library_files = []
end