diff options
author | Brad King <brad.king@kitware.com> | 2020-05-14 18:59:31 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-05-18 16:56:55 (GMT) |
commit | d6a88d21589f5b614baea16b25261b416651533c (patch) | |
tree | bafde7edfb69cff55fc77e7cb43e31b546f2eab3 /Source/cmGlobalGenerator.h | |
parent | d7e82a11d513c7f267cd2141bf1638ce7305a9a1 (diff) | |
download | CMake-d6a88d21589f5b614baea16b25261b416651533c.zip CMake-d6a88d21589f5b614baea16b25261b416651533c.tar.gz CMake-d6a88d21589f5b614baea16b25261b416651533c.tar.bz2 |
cmTarget: Replace "perConfig" constructor boolean with enum
Diffstat (limited to 'Source/cmGlobalGenerator.h')
-rw-r--r-- | Source/cmGlobalGenerator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h index dcd5a66..57c7808 100644 --- a/Source/cmGlobalGenerator.h +++ b/Source/cmGlobalGenerator.h @@ -553,7 +553,7 @@ protected: std::vector<std::string> Depends; std::string WorkingDir; bool UsesTerminal = false; - bool PerConfig = true; + cmTarget::PerConfig PerConfig = cmTarget::PerConfig::Yes; bool StdPipesUTF8 = false; }; |