Skip to content
Snippets Groups Projects
Commit f7f66ea8 authored by Lyle Johnson's avatar Lyle Johnson
Browse files

Removed the SWIG-generated wrapper files from the clean_globs

parent 49f5af00
No related branches found
No related tags found
No related merge requests found
...@@ -11,7 +11,7 @@ FXSCINTILLA_INSTALL_DIR = "~/src/fxscintilla-1.71/scintilla" ...@@ -11,7 +11,7 @@ FXSCINTILLA_INSTALL_DIR = "~/src/fxscintilla-1.71/scintilla"
hoe = Hoe.spec "FXRuby" do hoe = Hoe.spec "FXRuby" do
# ... project specific data ... # ... project specific data ...
self.blog_categories = %w{FXRuby} self.blog_categories = %w{FXRuby}
self.clean_globs = [".config", "ext/fox16/Makefile", "ext/fox16/*_wrap.cxx", "ext/fox16/*_wrap.cpp", "ext/fox16/*.o", "ext/fox16/*.bundle", "ext/fox16/mkmf.log", "ext/fox16/conftest.dSYM", "ext/fox16/include/swigrubyrun.h"] self.clean_globs = [".config", "ext/fox16/Makefile", "ext/fox16/*.o", "ext/fox16/*.bundle", "ext/fox16/mkmf.log", "ext/fox16/conftest.dSYM", "ext/fox16/include/swigrubyrun.h"]
developer("Lyle Johnson", "lyle@lylejohnson.name") developer("Lyle Johnson", "lyle@lylejohnson.name")
self.extra_rdoc_files = ["rdoc-sources", File.join("rdoc-sources", "README.rdoc")] self.extra_rdoc_files = ["rdoc-sources", File.join("rdoc-sources", "README.rdoc")]
self.remote_rdoc_dir = "doc/api" self.remote_rdoc_dir = "doc/api"
...@@ -57,7 +57,7 @@ Rake::Task['compile'].prerequisites.unshift("fxruby:configure") ...@@ -57,7 +57,7 @@ Rake::Task['compile'].prerequisites.unshift("fxruby:configure")
# c:/ruby-1.8.6-p383-preview2/devkit/msys/1.0.11/usr/local/share/swig/1.3.22 # c:/ruby-1.8.6-p383-preview2/devkit/msys/1.0.11/usr/local/share/swig/1.3.22
# before running swig on MinGW. # before running swig on MinGW.
namespace :swig do namespace :swig do
SWIG = "swig-1.3.22" SWIG = (RUBY_PLATFORM =~ /mingw/) ? "swig-1.3.22.exe" : "swig-1.3.22"
SWIGFLAGS = "-fcompact -noruntime -c++ -ruby -no_default -I../fox-includes" SWIGFLAGS = "-fcompact -noruntime -c++ -ruby -no_default -I../fox-includes"
SWIG_LIB = `#{SWIG} -swiglib`.chomp SWIG_LIB = `#{SWIG} -swiglib`.chomp
SWIG_MODULES = { SWIG_MODULES = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment