CSharp added
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@4422 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
e451d3f145
commit
2f7a7d2e6b
3 changed files with 5 additions and 4 deletions
|
|
@ -39,10 +39,11 @@ swig_SOURCES = CParse/cscanner.c \
|
||||||
DOH/string.c \
|
DOH/string.c \
|
||||||
DOH/void.c \
|
DOH/void.c \
|
||||||
Modules/allocate.cxx \
|
Modules/allocate.cxx \
|
||||||
Modules/emit.cxx \
|
|
||||||
Modules/browser.cxx \
|
Modules/browser.cxx \
|
||||||
Modules/chicken.cxx \
|
Modules/chicken.cxx \
|
||||||
Modules/contract.cxx \
|
Modules/contract.cxx \
|
||||||
|
Modules/csharp.cxx \
|
||||||
|
Modules/emit.cxx \
|
||||||
Modules/guile.cxx \
|
Modules/guile.cxx \
|
||||||
Modules/java.cxx \
|
Modules/java.cxx \
|
||||||
Modules/lang.cxx \
|
Modules/lang.cxx \
|
||||||
|
|
|
||||||
|
|
@ -251,7 +251,7 @@ int SWIG_main(int argc, char *argv[], Language *l) {
|
||||||
Printf(stderr, "Warning: Could not determine SWIG library location. Assuming " SWIG_LIB "\n");
|
Printf(stderr, "Warning: Could not determine SWIG library location. Assuming " SWIG_LIB "\n");
|
||||||
sprintf(LibDir,"%s",SWIG_LIB); // Build up search paths
|
sprintf(LibDir,"%s",SWIG_LIB); // Build up search paths
|
||||||
} else {
|
} else {
|
||||||
strcpy(p+1, "Lib");
|
strcpy(p+1, "..\\..\\Lib");
|
||||||
strcpy(LibDir, buf);
|
strcpy(LibDir, buf);
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
|
|
|
||||||
|
|
@ -48,7 +48,7 @@ extern "C" {
|
||||||
Language *swig_sexp(void);
|
Language *swig_sexp(void);
|
||||||
Language *swig_xml(void);
|
Language *swig_xml(void);
|
||||||
Language *swig_chicken(void);
|
Language *swig_chicken(void);
|
||||||
/* Language *swig_csharp(void); */
|
Language *swig_csharp(void);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct swig_module {
|
struct swig_module {
|
||||||
|
|
@ -63,7 +63,7 @@ struct swig_module {
|
||||||
|
|
||||||
swig_module modules[] = {
|
swig_module modules[] = {
|
||||||
{"-chicken", swig_chicken, "CHICKEN"},
|
{"-chicken", swig_chicken, "CHICKEN"},
|
||||||
/* {"-csharp", NULL, "CSHARP"}, */
|
{"-csharp", swig_csharp, "CSharp"},
|
||||||
{"-guile", swig_guile, "Guile"},
|
{"-guile", swig_guile, "Guile"},
|
||||||
{"-java", swig_java, "Java"},
|
{"-java", swig_java, "Java"},
|
||||||
{"-mzscheme", swig_mzscheme, "Mzscheme"},
|
{"-mzscheme", swig_mzscheme, "Mzscheme"},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue