diff options
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/extract-api.sh | 3 | ||||
-rwxr-xr-x | tools/genruby.rb | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/tools/extract-api.sh b/tools/extract-api.sh index f4b0617..f17a0fe 100755 --- a/tools/extract-api.sh +++ b/tools/extract-api.sh @@ -42,9 +42,10 @@ for header in \ "${INCLUDE}/ecore-1/Ecore_Fb.h" \ "${INCLUDE}/ecore-1/Ecore_File.h" \ "${INCLUDE}/EMap.h" \ + "${INCLUDE}/elementary-0/Elementary.h" \ "${INCLUDE}/elementary-0/elm_general.h" \ "${INCLUDE}/elementary-0/elm_tooltip.h" \ - "${INCLUDE}/elementary-0/Elementary.h" \ + "${INCLUDE}/elementary-0/elm_object_item.h" \ ; do # if [ ! -e "$header" ]; then diff --git a/tools/genruby.rb b/tools/genruby.rb index 9b9706a..e36eef2 100755 --- a/tools/genruby.rb +++ b/tools/genruby.rb @@ -342,6 +342,11 @@ libs << { :modname=>'Elm', :prefix=>'elm', :outfile=>'elm/elm_tooltip.rb', :requires=>['efl/native/elementary'], :constants=>[] } +libs << { + :lib=>'elementary-ver-pre-svn-09.so.0',:header=>'elm_object_item.h', + :modname=>'Elm', :prefix=>'elm_object_item', :outfile=>'elm/elm_object_item.rb', + :requires=>['efl/native/elementary','efl/native/elm/elm_general','efl/native/elm/elm_tooltip'], :constants=>[] +} Dir.mkdir lib_path unless (File.exists? lib_path) # libs.each do |lib| |