Method: Buildable#library_type

Defined in:
lib/makeconf/buildable.rb

#library_typeObject



121
122
123
124
125
126
127
128
129
130
# File 'lib/makeconf/buildable.rb', line 121

def library_type
  case @output_type
  when 'shared library'
  return :shared
  when 'static library'
  return :static
  else
  throw 'Not a library'
  end
end