diff options
author | Brad King <brad.king@kitware.com> | 2008-07-03 17:28:54 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-07-03 17:28:54 (GMT) |
commit | 1342965b05f7bf319e02664e4d2231fa6234c3d9 (patch) | |
tree | 220b26faf6ce183944a2f7b57ace3b7b9962d231 /Source/cmGlobalXCodeGenerator.h | |
parent | 264af17bfcb78cd08c1f5542269cc74dd733b714 (diff) | |
download | CMake-1342965b05f7bf319e02664e4d2231fa6234c3d9.zip CMake-1342965b05f7bf319e02664e4d2231fa6234c3d9.tar.gz CMake-1342965b05f7bf319e02664e4d2231fa6234c3d9.tar.bz2 |
BUG: Fix Xcode reference to Info.plist resource
- Generated Xcode projects for application bundles list the
CMake-generated Info.plist input file as a resource.
- The location of the input file was moved by a previous commit,
but the reference to it as a resource file was not updated.
- This change moves the file to CMakeFiles/<tgt>.dir/Info.plist
to give it a more intuitive name in the Xcode project.
- We also update the reference to point at the correct location.
- See bug #7277.
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.h')
-rw-r--r-- | Source/cmGlobalXCodeGenerator.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmGlobalXCodeGenerator.h b/Source/cmGlobalXCodeGenerator.h index 2b289fa..a20e070 100644 --- a/Source/cmGlobalXCodeGenerator.h +++ b/Source/cmGlobalXCodeGenerator.h @@ -103,6 +103,8 @@ private: cmXCodeObject* frameworkBuildPhase, cmTarget& cmtarget); + std::string ComputeInfoPListLocation(cmTarget& target); + void AddCommandsToBuildPhase(cmXCodeObject* buildphase, cmTarget& target, std::vector<cmCustomCommand> |