diff options
author | Luca Cappa <lucappa@microsoft.com> | 2019-03-19 20:52:53 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-05-14 17:27:18 (GMT) |
commit | 2a9ff9703e20172ca14b6c872b300d0dbb75f5da (patch) | |
tree | 62541895769c282e435393895121f8573d2cdc06 /Source/cmTarget.cxx | |
parent | fa077acba51393030586aa50f5eff9d6034c5c11 (diff) | |
download | CMake-2a9ff9703e20172ca14b6c872b300d0dbb75f5da.zip CMake-2a9ff9703e20172ca14b6c872b300d0dbb75f5da.tar.gz CMake-2a9ff9703e20172ca14b6c872b300d0dbb75f5da.tar.bz2 |
MSVC: Add support for /JMC (Just My Code)
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index 9598a3f..d6d463b 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -335,6 +335,7 @@ cmTarget::cmTarget(std::string const& name, cmStateEnums::TargetType type, InitProperty("LINK_SEARCH_START_STATIC", nullptr); InitProperty("LINK_SEARCH_END_STATIC", nullptr); InitProperty("FOLDER", nullptr); + InitProperty("VS_JUST_MY_CODE_DEBUGGING", nullptr); #ifdef __APPLE__ if (this->GetGlobalGenerator()->IsXcode()) { InitProperty("XCODE_GENERATE_SCHEME", nullptr); |