cmGlobalXCodeGenerator: Adopt pbxproj object id generation

This commit is contained in:
Brad King
2021-01-06 15:29:24 -05:00
parent 95e3ff2e88
commit d250b67722
6 changed files with 30 additions and 28 deletions
+3 -2
View File
@@ -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;
}