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 | |
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')
-rwxr-xr-x | tools/extract-api.sh | 1 | ||||
-rwxr-xr-x | tools/genruby.rb | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/tools/extract-api.sh b/tools/extract-api.sh index 39097a6..ce754e3 100755 --- a/tools/extract-api.sh +++ b/tools/extract-api.sh @@ -57,6 +57,7 @@ for header in \ "${INCLUDE}/elementary-0/elm_box.h" \ "${INCLUDE}/elementary-0/elm_button.h" \ "${INCLUDE}/elementary-0/elm_frame.h" \ + "${INCLUDE}/elementary-0/elm_panel.h" \ ; do # if [ ! -e "$header" ]; then 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| |