Rename dll/shared object name to be the same as the module name for R - _wrap is no longer postfixed to the name

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10130 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2007-11-14 22:34:10 +00:00
commit 083efd15ca
9 changed files with 9 additions and 9 deletions

View file

@ -1,7 +1,7 @@
# This file illustrates the proxy class C++ interface generated
# by SWIG.
dyn.load(paste("example_wrap", .Platform$dynlib.ext, sep=""))
dyn.load(paste("example", .Platform$dynlib.ext, sep=""))
source("example.R")
cacheMetaData(1)

View file

@ -1,6 +1,6 @@
# file: runme.R
dyn.load(paste("example_wrap", .Platform$dynlib.ext, sep=""))
dyn.load(paste("example", .Platform$dynlib.ext, sep=""))
source("example.R")
cacheMetaData(1)

View file

@ -1,5 +1,5 @@
source("unittest.R")
dyn.load(paste("copy_struct_wrap", .Platform$dynlib.ext, sep=""))
dyn.load(paste("copy_struct", .Platform$dynlib.ext, sep=""))
source("copy_struct.R")
cacheMetaData(1)

View file

@ -1,7 +1,7 @@
# This file illustrates the proxy class C++ interface generated
# by SWIG.
dyn.load(paste("double_delete_wrap", .Platform$dynlib.ext, sep=""))
dyn.load(paste("double_delete", .Platform$dynlib.ext, sep=""))
source("double_delete.R")
cacheMetaData(1)

View file

@ -1,5 +1,5 @@
source("unittest.R")
dyn.load(paste("funcptr_wrap", .Platform$dynlib.ext, sep=""))
dyn.load(paste("funcptr", .Platform$dynlib.ext, sep=""))
source("funcptr.R")
cacheMetaData(1)
unittest(do_op(1, 3, add), 4)

View file

@ -1,5 +1,5 @@
source("unittest.R")
dyn.load(paste("ignore_parameter_wrap", .Platform$dynlib.ext, sep=""))
dyn.load(paste("ignore_parameter", .Platform$dynlib.ext, sep=""))
source("ignore_parameter.R")
cacheMetaData(1)

View file

@ -1,5 +1,5 @@
source("unittest.R")
dyn.load(paste("legacy_wrap", .Platform$dynlib.ext, sep=""))
dyn.load(paste("legacy", .Platform$dynlib.ext, sep=""))
source("legacy.R")
cacheMetaData(1)

View file

@ -1,5 +1,5 @@
source("unittest.R")
dyn.load(paste("simple_array_wrap", .Platform$dynlib.ext, sep=""))
dyn.load(paste("simple_array", .Platform$dynlib.ext, sep=""))
source("simple_array.R")
cacheMetaData(1)
initArray()

View file

@ -1,5 +1,5 @@
source("unittest.R")
dyn.load(paste("unions_wrap", .Platform$dynlib.ext, sep=""))
dyn.load(paste("unions", .Platform$dynlib.ext, sep=""))
source("unions.R")
cacheMetaData(1)