Class: Project

Inherits:
Object
  • Object
show all
Defined in:
lib/makeconf/project.rb

Overview

A project contains all of the information about the build.

Class Method Summary collapse

Class Method Details

.new(options) ⇒ Object



9
10
11
12
13
14
15
16
17
# File 'lib/makeconf/project.rb', line 9

def self.new(options)
  if SystemType.host =~ /-androideabi$/
     object = AndroidProject.allocate
  else
     object = BaseProject.allocate
  end
  object.send :initialize, options
  object
end