summaryrefslogtreecommitdiffstats
path: root/lib/efl.rb
blob: ab8322bae9e6ee43d90e160ef05cc79f65913211 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#! /usr/bin/env ruby
# -*- coding: UTF-8 -*-
#
#
module Efl
    #
    VERSION = '0.0.8'
    #
    PACKAGE_BIN_DIR = File.join `pkg-config --variable=exec_prefix ecore`.strip, 'bin'
    PACKAGE_LIB_DIR = File.join `pkg-config --variable=exec_prefix ecore`.strip, 'lib'
    PACKAGE_DATA_DIR = File.join `pkg-config --variable=exec_prefix ecore`.strip, 'share'
    #
    autoload :EcoreEvas,    './lib/efl/ecore_evas.rb'
    autoload :EcoreGetopt,  './lib/efl/ecore_getopt.rb'
    autoload :EcoreInput,   './lib/efl/ecore_input.rb'
    autoload :Ecore,        './lib/efl/ecore.rb'
    autoload :Edje,         './lib/efl/edje.rb'
    autoload :Eet,          './lib/efl/eet.rb'
    autoload :EinaHash,     './lib/efl/eina_hash.rb'
    autoload :EinaList,     './lib/efl/eina_list.rb'
    autoload :EinaLog,      './lib/efl/eina_log.rb'
    autoload :Eina,         './lib/efl/eina.rb'
    autoload :Elm,          './lib/efl/elementary.rb'
    autoload :Evas,         './lib/efl/evas.rb'
end
#
# EOF