summaryrefslogtreecommitdiffstats
path: root/Source/cmXCode21Object.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2021-01-06 20:29:24 (GMT)
committerBrad King <brad.king@kitware.com>2021-01-06 21:21:53 (GMT)
commitd250b67722abcfe1bcd22511943f3e032ef1ef3d (patch)
treeb23b82a7dc28a2197cf765a92c8985486140a8c4 /Source/cmXCode21Object.cxx
parent95e3ff2e88aa8dd984915e6e0373eed2bb96f17f (diff)
downloadCMake-d250b67722abcfe1bcd22511943f3e032ef1ef3d.zip
CMake-d250b67722abcfe1bcd22511943f3e032ef1ef3d.tar.gz
CMake-d250b67722abcfe1bcd22511943f3e032ef1ef3d.tar.bz2
cmGlobalXCodeGenerator: Adopt pbxproj object id generation
Diffstat (limited to 'Source/cmXCode21Object.cxx')
-rw-r--r--Source/cmXCode21Object.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmXCode21Object.cxx b/Source/cmXCode21Object.cxx
index 1cf9a95..9b0dc58 100644
--- a/Source/cmXCode21Object.cxx
+++ b/Source/cmXCode21Object.cxx
@@ -4,11 +4,12 @@
#include <ostream>
#include <string>
+#include <utility>
#include "cmSystemTools.h"
-cmXCode21Object::cmXCode21Object(PBXType ptype, Type type)
- : cmXCodeObject(ptype, type)
+cmXCode21Object::cmXCode21Object(PBXType ptype, Type type, std::string id)
+ : cmXCodeObject(ptype, type, std::move(id))
{
this->Version = 21;
}