summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/extract-api.sh1
-rwxr-xr-xtools/genruby.rb6
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|