class Daedalus::StaticLibrary

Public Instance Methods

build(compiler) click to toggle source
    # File lib/daedalus.rb
694 def build(compiler)
695   Dir.chdir @base do
696     # TODO: out of date checking should be subsumed in building
697     @sources.each { |s| s.build @compiler if s.out_of_date? @compiler }
698     @compiler.ar name, object_files
699   end
700 end
library() click to toggle source
    # File lib/daedalus.rb
690 def library
691   "#{@library}.a"
692 end