summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2002-01-03 19:19:06 (GMT)
committerKen Martin <ken.martin@kitware.com>2002-01-03 19:19:06 (GMT)
commit0333f15b96ebe0308ef3d04a0ec9a434d3a0be40 (patch)
treec9982724f0475083ae56ff2ba9f0d562c1ced79a
parenta57202fcc49cf6eca8975df127125e5274ada4af (diff)
downloadCMake-0333f15b96ebe0308ef3d04a0ec9a434d3a0be40.zip
CMake-0333f15b96ebe0308ef3d04a0ec9a434d3a0be40.tar.gz
CMake-0333f15b96ebe0308ef3d04a0ec9a434d3a0be40.tar.bz2
minor fixes
-rw-r--r--Source/cmVTKWrapJavaCommand.cxx17
-rw-r--r--Source/cmVTKWrapPythonCommand.cxx10
2 files changed, 21 insertions, 6 deletions
diff --git a/Source/cmVTKWrapJavaCommand.cxx b/Source/cmVTKWrapJavaCommand.cxx
index bfa8235..d8435e8 100644
--- a/Source/cmVTKWrapJavaCommand.cxx
+++ b/Source/cmVTKWrapJavaCommand.cxx
@@ -116,9 +116,12 @@ void cmVTKWrapJavaCommand::FinalPass()
// wrap all the .h files
depends.push_back(wjava);
- depends.push_back(hints);
depends2.push_back(pjava);
- depends2.push_back(hints);
+ if (strcmp("${VTK_WRAP_HINTS}",hints.c_str()))
+ {
+ depends.push_back(hints);
+ depends2.push_back(hints);
+ }
for(int classNum = 0; classNum < lastClass; classNum++)
{
m_Makefile->AddSource(m_WrapClasses[classNum],m_SourceList.c_str());
@@ -132,7 +135,10 @@ void cmVTKWrapJavaCommand::FinalPass()
std::vector<std::string> args;
args.push_back(m_WrapHeaders[classNum]);
- args.push_back(hints);
+ if (strcmp("${VTK_WRAP_HINTS}",hints.c_str()))
+ {
+ args.push_back(hints);
+ }
args.push_back((m_WrapClasses[classNum].IsAnAbstractClass() ? "0" : "1"));
args.push_back(res);
@@ -142,7 +148,10 @@ void cmVTKWrapJavaCommand::FinalPass()
std::vector<std::string> args2;
args2.push_back(m_WrapHeaders[classNum]);
- args2.push_back(hints);
+ if (strcmp("${VTK_WRAP_HINTS}",hints.c_str()))
+ {
+ args2.push_back(hints);
+ }
args2.push_back((m_WrapClasses[classNum].IsAnAbstractClass() ? "0" : "1"));
args2.push_back(res2);
diff --git a/Source/cmVTKWrapPythonCommand.cxx b/Source/cmVTKWrapPythonCommand.cxx
index 811d17c..e36ab30 100644
--- a/Source/cmVTKWrapPythonCommand.cxx
+++ b/Source/cmVTKWrapPythonCommand.cxx
@@ -125,7 +125,10 @@ void cmVTKWrapPythonCommand::FinalPass()
// wrap all the .h files
depends.push_back(wpython);
- depends.push_back(hints);
+ if (strcmp("${VTK_WRAP_HINTS}",hints.c_str()))
+ {
+ depends.push_back(hints);
+ }
for(int classNum = 0; classNum < lastClass; classNum++)
{
m_Makefile->AddSource(m_WrapClasses[classNum],m_SourceList.c_str());
@@ -134,7 +137,10 @@ void cmVTKWrapPythonCommand::FinalPass()
res += m_WrapClasses[classNum].GetSourceName() + ".cxx";
std::vector<std::string> args;
args.push_back(m_WrapHeaders[classNum]);
- args.push_back(hints);
+ if (strcmp("${VTK_WRAP_HINTS}",hints.c_str()))
+ {
+ args.push_back(hints);
+ }
args.push_back((m_WrapClasses[classNum].IsAnAbstractClass() ? "0" : "1"));
args.push_back(res);
m_Makefile->AddCustomCommand(m_WrapHeaders[classNum].c_str(),