Displaying 5 results from an estimated 5 matches for "do_swig".
Did you mean:
do_sign
2007 May 21
0
[1021] trunk/wxruby2/rake/rakewx.rb: Memory mgmt: don''t run fixdeleting anymore
...sp2007-05-19 22:39:41 UTC (rev 1020)
+++ trunk/wxruby2/rake/rakewx.rb        2007-05-21 18:35:15 UTC (rev 1021)
</span><span class="lines">@@ -247,7 +247,6 @@
</span><span class="cx"> do_swig(swig_file, cpp_file, $swig_options)
</span><span class="cx"> post_process(cpp_file, "fixplatform.rb")
</span><span class="cx"> post_process(cpp_file, "fixmodule.rb")
</span><del>-   &...
2007 Jul 21
0
[1127] trunk/wxruby2: Move shared C++ GC functions into separate file included into wx.i
...le(base_name)
</span><span class="cx"> swig_file = special_swig_file(base_name)
</span><del>-
- file(cpp_file => swig_file) do |t|
</del><ins>+ file(cpp_file => swig_file ) do |t|
</ins><span class="cx"> do_swig(swig_file, cpp_file, $swig_options)
</span><span class="cx"> post_process(cpp_file, "fixmodule.rb")
</span><span class="cx"> end
</span><span class="lines">@@ -259,8 +258,8 @@
</span><span class="c...
2007 Apr 14
0
[967] branches/wxruby2/wxwidgets_282/rake/rakewx.rb: Fix two warnings generated by the rakefile
...span class="cx">
</span><span class="cx">
</span><span class="lines">@@ -207,10 +209,10 @@
</span><span class="cx"> end
</span><span class="cx">
</span><span class="cx"> def do_swig(swig_file, cpp_file, options)
</span><del>-        if(!$found_good_swig)
-                if(!h...
2005 Aug 03
24
patch for Icon
I just checked out a fresh copy and had to tweak wxIcon.h to get it to
compile on Mac OS X and windows. The problem is with:
wxIcon(const wxString& filename,
wxBitmapType type = wxBITMAP_TYPE_XPM,
int desiredWidth=-1, int desiredHeight=-1);
that signature is only used on GTK on other systems it is:
wxIcon(const wxString& name,
long
2007 Jun 25
0
[1067] trunk/wxruby2: Set up event handlers in Ruby rather than by post-processing SWIG output
...me)
- cpp_file = cpp_file(base_name)
- swig_file = special_swig_file(base_name)
- events_src = File.join %w|swig classes include events.rb|
- fixevents = File.join($swig_dir, "fixevents.rb")
-
-
- file( cpp_file => [ swig_file, events_src, fixevents ] ) do | t |
- do_swig(swig_file, cpp_file, $swig_options)
- post_process(cpp_file, "fixmodule.rb")
- post_process(cpp_file, "fixevents.rb")
- end
- return cpp_file
-end
-
</del><span class="cx"> def create_swig_main_task(base_name)
</span><span class...