summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2002-10-03 20:40:23 (GMT)
committerKen Martin <ken.martin@kitware.com>2002-10-03 20:40:23 (GMT)
commitd27cd931ae8f4cd4c53ef78c1c61e3cfe5946e77 (patch)
treecf12b37c42a8ebda89cd379291e40b6214856b61
parent599114fc706c005c853e2bbfd6b9ec0f49b2ce57 (diff)
downloadCMake-d27cd931ae8f4cd4c53ef78c1c61e3cfe5946e77.zip
CMake-d27cd931ae8f4cd4c53ef78c1c61e3cfe5946e77.tar.gz
CMake-d27cd931ae8f4cd4c53ef78c1c61e3cfe5946e77.tar.bz2
some fixes
-rw-r--r--Source/cmGlobalCodeWarriorGenerator.cxx1
-rw-r--r--Source/cmLocalCodeWarriorGenerator.cxx2
2 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmGlobalCodeWarriorGenerator.cxx b/Source/cmGlobalCodeWarriorGenerator.cxx
index 9e08bc9..f0e51bc 100644
--- a/Source/cmGlobalCodeWarriorGenerator.cxx
+++ b/Source/cmGlobalCodeWarriorGenerator.cxx
@@ -19,7 +19,6 @@
#include "cmMakefile.h"
#include "cmake.h"
#include "cmTarget.h"
-#include "windows.h"
void cmGlobalCodeWarriorGenerator::EnableLanguage(const char*,
cmMakefile *mf)
diff --git a/Source/cmLocalCodeWarriorGenerator.cxx b/Source/cmLocalCodeWarriorGenerator.cxx
index e0bcaf1..b50ec15 100644
--- a/Source/cmLocalCodeWarriorGenerator.cxx
+++ b/Source/cmLocalCodeWarriorGenerator.cxx
@@ -105,7 +105,7 @@ void cmLocalCodeWarriorGenerator::WriteFileList(std::ostream& fout,
// Add the file to the list of sources.
std::string source = (*i)->GetFullPath();
fout << "<FILE>\n";
- fout << "<PATHTYPE>PathAbsolute</PATHTYPE>\n";
+ fout << "<PATHTYPE>Absolute</PATHTYPE>\n";
fout << "<PATHROOT>Absolute</PATHROOT>\n";
//fout << "<ACCESSPATH>common</ACCESSPATH>\n";
fout << "<PATH>" << source << "</PATH>\n";