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)