class Cxxproject::SharedLibsHelper
Public Instance Methods
symlink_lib_to(link, bb)
click to toggle source
# File lib/cxxproject/buildingblocks/shared_libs_helper.rb, line 3 def symlink_lib_to(link, bb) file = File.basename(bb.executable_name) if file != link cd "#{bb.output_dir}/libs" do symlink(file, link) end end end