class RakeOE::Default

Public Class Methods

dirs() click to toggle source
# File lib/rakeoe/defaults.rb, line 61
def self.dirs
  RakeOE::DEFAULT_DIRS
end
generate_bin() click to toggle source
# File lib/rakeoe/defaults.rb, line 101
def self.generate_bin
  RakeOE::DEFAULT_GENERATE_BIN
end
generate_hex() click to toggle source
# File lib/rakeoe/defaults.rb, line 97
def self.generate_hex
  RakeOE::DEFAULT_GENERATE_HEX
end
generate_map() click to toggle source
# File lib/rakeoe/defaults.rb, line 105
def self.generate_map
  RakeOE::DEFAULT_GENERATE_MAP
end
lang_std_c() click to toggle source
# File lib/rakeoe/defaults.rb, line 81
def self.lang_std_c
  RakeOE::DEFAULT_LANGUAGE_STD_C
end
lang_std_cpp() click to toggle source
# File lib/rakeoe/defaults.rb, line 85
def self.lang_std_cpp
  RakeOE::DEFAULT_LANGUAGE_STD_CPP
end
optimization_dbg() click to toggle source
# File lib/rakeoe/defaults.rb, line 73
def self.optimization_dbg
  RakeOE::DEFAULT_OPTIMIZATION_DBG
end
optimization_release() click to toggle source
# File lib/rakeoe/defaults.rb, line 77
def self.optimization_release
  RakeOE::DEFAULT_OPTIMIZATION_RELEASE
end
prj_settings() click to toggle source
# File lib/rakeoe/defaults.rb, line 109
def self.prj_settings
  {
    'ADD_SOURCE_DIRS'   => '',
    'IGNORED_SOURCES'   => '',
    'EXPORTED_INC_DIRS' => 'include/',
    'ADD_INC_DIRS'      => '',
    'TEST_SOURCE_DIRS'  => 'test/ tests/',
    'ADD_CFLAGS'        => '',
    'ADD_CXXFLAGS'      => '',
    'ADD_LIBS'          => '',
    'ADD_LDFLAGS'       => '',
    'USE_QT'            => '',
    'IGNORED_PLATFORMS' => ''
  }
end
release() click to toggle source
# File lib/rakeoe/defaults.rb, line 65
def self.release
  RakeOE::DEFAULT_RELEASE
end
stripped() click to toggle source
# File lib/rakeoe/defaults.rb, line 93
def self.stripped
  RakeOE::DEFAULT_STRIPPED
end
suffixes() click to toggle source
# File lib/rakeoe/defaults.rb, line 57
def self.suffixes
  RakeOE::DEFAULT_SUFFIXES
end
sw_version() click to toggle source
# File lib/rakeoe/defaults.rb, line 89
def self.sw_version
  RakeOE::DEFAULT_SW_VERSION
end
test_fw() click to toggle source
# File lib/rakeoe/defaults.rb, line 69
def self.test_fw
  RakeOE::DEFAULT_TEST_FW
end