diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-02-24 22:35:35 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-02-24 22:35:35 (GMT) |
commit | c4156b4531668adc0dc9bf37f42758d6db03ff68 (patch) | |
tree | 37762d0fda6dadd103b9b4dc2f08facd77cffc35 /Source/cmGlobalXCodeGenerator.h | |
parent | 46757656011165aa8c857523c8770cd0ea80c3da (diff) | |
download | CMake-c4156b4531668adc0dc9bf37f42758d6db03ff68.zip CMake-c4156b4531668adc0dc9bf37f42758d6db03ff68.tar.gz CMake-c4156b4531668adc0dc9bf37f42758d6db03ff68.tar.bz2 |
COMP: Even more global target fixes
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.h')
-rw-r--r-- | Source/cmGlobalXCodeGenerator.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmGlobalXCodeGenerator.h b/Source/cmGlobalXCodeGenerator.h index 0e6f65f..d73639b 100644 --- a/Source/cmGlobalXCodeGenerator.h +++ b/Source/cmGlobalXCodeGenerator.h @@ -72,6 +72,9 @@ public: /** Append the subdirectory for the given configuration. */ virtual void AppendDirectoryForConfig(const char* config, std::string& dir); + ///! What is the configurations directory variable called? + virtual const char* GetCMakeCFGInitDirectory() { return "."; } + private: cmXCodeObject* CreateOrGetPBXGroup(cmTarget& cmtarget, cmSourceGroup* sg); @@ -148,7 +151,6 @@ private: const char* varNameSuffix, const char* default_flags); protected: - int m_XcodeVersion; std::vector<cmXCodeObject*> m_XCodeObjects; cmXCodeObject* m_RootObject; |