mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-01-27 03:14:21 +00:00
cmSyntheticTargetCache: add a struct for synthetic target caching
This commit is contained in:
parent
cb356b540c
commit
3dc6676ecc
@ -426,6 +426,7 @@ add_library(
|
||||
cmStateTypes.h
|
||||
cmStringAlgorithms.cxx
|
||||
cmStringAlgorithms.h
|
||||
cmSyntheticTargetCache.h
|
||||
cmSystemTools.cxx
|
||||
cmSystemTools.h
|
||||
cmTarget.cxx
|
||||
|
||||
15
Source/cmSyntheticTargetCache.h
Normal file
15
Source/cmSyntheticTargetCache.h
Normal file
@ -0,0 +1,15 @@
|
||||
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
file Copyright.txt or https://cmake.org/licensing for details. */
|
||||
#pragma once
|
||||
|
||||
#include "cmConfigure.h" // IWYU pragma: keep
|
||||
|
||||
#include <map>
|
||||
#include <string>
|
||||
|
||||
class cmGeneratorTarget;
|
||||
|
||||
struct cmSyntheticTargetCache
|
||||
{
|
||||
std::map<std::string, cmGeneratorTarget const*> CxxModuleTargets;
|
||||
};
|
||||
Loading…
x
Reference in New Issue
Block a user