class Motion::Project::Config

Public Instance Methods

include(header_file, options={}) click to toggle source

@param [String] header_file Requested C header file. @param [Hash] options Options for customizing BridgeSupport file generation @option options [String] :prefix Subdirectory of /usr/include used for root of included header files. @option options [String] :bridgesupport_dir Path where the generated bridgesupport file is saved. Defaults to ./build

# File lib/motion.h.rb, line 11
def include(header_file, options={})
  motion_h << MotionHeader.new(header_file, self, options).integrate
end
motion_h() click to toggle source
# File lib/motion.h.rb, line 15
def motion_h
  @motion_h ||= []
end