Method: QEDProject::Project#get_libraries

Defined in:
lib/qedproject/project.rb

#get_librariesObject

Loop through the libraries the user added and run their generate methods which pulls in the additional optional files.



195
196
197
198
199
200
201
# File 'lib/qedproject/project.rb', line 195

def get_libraries
  self.sorted_libs.each do |lib|
    library = QEDProject::Libraries::Base.libs[lib]
    l = library.new(self)
    l.generate!
  end
end