summaryrefslogtreecommitdiffstats
path: root/Source/cmCableData.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2001-03-02 17:27:41 (GMT)
committerBrad King <brad.king@kitware.com>2001-03-02 17:27:41 (GMT)
commitb6d1cda20e7d9b8d412a7281acb9157cff9cd362 (patch)
treeb28834bb088eb7d5090581fa5cbe173161e6da7c /Source/cmCableData.cxx
parentdc72655414eb8a611524b6480dad92d46b08fecb (diff)
downloadCMake-b6d1cda20e7d9b8d412a7281acb9157cff9cd362.zip
CMake-b6d1cda20e7d9b8d412a7281acb9157cff9cd362.tar.gz
CMake-b6d1cda20e7d9b8d412a7281acb9157cff9cd362.tar.bz2
ENH: CABLE config file (config_cable.xml) should now be opened in the output directory.
Diffstat (limited to 'Source/cmCableData.cxx')
-rw-r--r--Source/cmCableData.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmCableData.cxx b/Source/cmCableData.cxx
index 02fd0f6..0e833ee 100644
--- a/Source/cmCableData.cxx
+++ b/Source/cmCableData.cxx
@@ -22,13 +22,14 @@
* The cmCableData instance is owned by one cmCableCommand, which is given
* to this constructor.
*/
-cmCableData::cmCableData(const cmCableCommand* owner):
+cmCableData::cmCableData(const cmCableCommand* owner,
+ const std::string& configurationFile):
m_Owner(owner),
m_Indentation(0),
m_Package(NULL),
m_PackageNamespaceDepth(0)
{
- this->OpenOutputFile("cable_config.xml");
+ this->OpenOutputFile(configurationFile);
}