class CKick::LibraryPath

Represents a library link path (in respect to compiler -L option and CMake link_directories() fonction)

Public Instance Methods

cmake() click to toggle source

cmake code content

# File lib/ckick/library_path.rb, line 18
def cmake
  "link_directories(#{@path})"
end
raw_flag() click to toggle source

compiler flag as is

# File lib/ckick/library_path.rb, line 13
def raw_flag
  "-L#{@path}"
end