diff options
author | Brad King <brad.king@kitware.com> | 2019-06-12 16:48:04 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2019-06-12 16:48:13 (GMT) |
commit | f07200fe163640f708c62de3cbdc0fb49a7e0471 (patch) | |
tree | 785ba40885c82aa0fa62de210b92ea30a027c7ea /Source/cmTest.h | |
parent | c1580ecc13cf2dea3f047d1018e705bd34cecc53 (diff) | |
parent | e791ffac61912f6540742aabaf4cb78a4d475a16 (diff) | |
download | CMake-f07200fe163640f708c62de3cbdc0fb49a7e0471.zip CMake-f07200fe163640f708c62de3cbdc0fb49a7e0471.tar.gz CMake-f07200fe163640f708c62de3cbdc0fb49a7e0471.tar.bz2 |
Merge topic 'add-test-command-expand-lists'
e791ffac61 add_test: Add COMMAND_EXPAND_LISTS option
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !3422
Diffstat (limited to 'Source/cmTest.h')
-rw-r--r-- | Source/cmTest.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmTest.h b/Source/cmTest.h index 88dc730..02d8f46 100644 --- a/Source/cmTest.h +++ b/Source/cmTest.h @@ -51,10 +51,15 @@ public: bool GetOldStyle() const { return this->OldStyle; } void SetOldStyle(bool b) { this->OldStyle = b; } + /** Set/Get whether lists in command lines should be expanded. */ + bool GetCommandExpandLists() const; + void SetCommandExpandLists(bool b); + private: cmPropertyMap Properties; std::string Name; std::vector<std::string> Command; + bool CommandExpandLists; bool OldStyle; |