summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.h
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2021-07-08 14:10:06 (GMT)
committerBrad King <brad.king@kitware.com>2021-07-08 16:15:10 (GMT)
commit854dcb0d01676f444d0aae9e6a095a80c5819496 (patch)
tree4b8fcac5c687daf962861f7990b03c05cd0f8596 /Source/cmMakefile.h
parent16d9c317a30431b98c144f9529124746e4ea1d80 (diff)
downloadCMake-854dcb0d01676f444d0aae9e6a095a80c5819496.zip
CMake-854dcb0d01676f444d0aae9e6a095a80c5819496.tar.gz
CMake-854dcb0d01676f444d0aae9e6a095a80c5819496.tar.bz2
cmMakefile: Split out CreateNewTarget from AddNewTarget
`CreateNewTarget` tells whether the target is inserted or not.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r--Source/cmMakefile.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h
index 14c1a0f..5886c86 100644
--- a/Source/cmMakefile.h
+++ b/Source/cmMakefile.h
@@ -13,6 +13,7 @@
#include <stack>
#include <string>
#include <unordered_map>
+#include <utility>
#include <vector>
#include <cm/optional>
@@ -230,6 +231,10 @@ public:
cmTarget* AddImportedTarget(const std::string& name,
cmStateEnums::TargetType type, bool global);
+ std::pair<cmTarget&, bool> CreateNewTarget(
+ const std::string& name, cmStateEnums::TargetType type,
+ cmTarget::PerConfig perConfig = cmTarget::PerConfig::Yes);
+
cmTarget* AddNewTarget(cmStateEnums::TargetType type,
const std::string& name);