diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-27 15:03:43 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-27 15:03:43 +0100 |
commit | 41f77c375f4bfcc6395425aa86158bdad93108ad (patch) | |
tree | 290002f39100e56ccad0ccc81647dbddb37cfb1e /tools/genruby.rb | |
parent | 85de83d793de3e09cdce18cb6034047db400788a (diff) | |
download | ffi-efl-41f77c375f4bfcc6395425aa86158bdad93108ad.zip ffi-efl-41f77c375f4bfcc6395425aa86158bdad93108ad.tar.gz |
parse elm_panel.h, generate elm_panel.rb
Diffstat (limited to 'tools/genruby.rb')
-rwxr-xr-x | tools/genruby.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/genruby.rb b/tools/genruby.rb index f4d523d..1be9b57 100755 --- a/tools/genruby.rb +++ b/tools/genruby.rb @@ -405,6 +405,12 @@ libs << { :modname=>'ElmFrame', :prefix=>'elm_frame', :outfile=>'elm/elm_frame.rb', :requires=>["#{NATIVE}/elementary"], :constants=>[] } +libs << { + :lib=>ELM_LIB,:header=>'elm_panel.h', + :modname=>'ElmPanel', :prefix=>'elm_panel', :outfile=>'elm/elm_panel.rb', + :requires=>["#{NATIVE}/elementary"], :constants=>[] +} +# Dir.mkdir lib_path unless (File.exists? lib_path) # libs.each do |lib| |