class CKick::IncludePath

Represents a compiler include path (-I option or CMake include_directories() fonction)

Public Instance Methods

cmake() click to toggle source

cmake code content

# File lib/ckick/include_path.rb, line 18
def cmake
  %Q{include_directories(#{@path})}
end
raw_flag() click to toggle source

compiler flag as is

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