diff options
author | Brad King <brad.king@kitware.com> | 2021-01-08 14:07:10 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2021-01-08 14:07:18 (GMT) |
commit | 38335f275f74605682edd7d6ab6e3fa67155f314 (patch) | |
tree | 3a98edc1e85db781261de41efe2ef8dcfd9efa3f /Source/cmXCodeObject.h | |
parent | 3aca3f81449a282fc684999b2bcd6db4537c5661 (diff) | |
parent | b8b6573db81327fc1800d9b1a92eb97820d7f972 (diff) | |
download | CMake-38335f275f74605682edd7d6ab6e3fa67155f314.zip CMake-38335f275f74605682edd7d6ab6e3fa67155f314.tar.gz CMake-38335f275f74605682edd7d6ab6e3fa67155f314.tar.bz2 |
Merge topic 'xcode-object-ids'
b8b6573db8 Xcode: Use deterministic object ids for script build phases
2892228dc9 cmGlobalXCodeGenerator: Add infrastructure for deterministic object ids
d250b67722 cmGlobalXCodeGenerator: Adopt pbxproj object id generation
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !5671
Diffstat (limited to 'Source/cmXCodeObject.h')
-rw-r--r-- | Source/cmXCodeObject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmXCodeObject.h b/Source/cmXCodeObject.h index ab7f99e..dd5e86e 100644 --- a/Source/cmXCodeObject.h +++ b/Source/cmXCodeObject.h @@ -57,7 +57,7 @@ public: }; static const char* PBXTypeNames[]; virtual ~cmXCodeObject(); - cmXCodeObject(PBXType ptype, Type type); + cmXCodeObject(PBXType ptype, Type type, std::string id); Type GetType() const { return this->TypeValue; } PBXType GetIsA() const { return this->IsA; } |