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:
parent
5fd4c72220
commit
083efd15ca
9 changed files with 9 additions and 9 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue