diff options
author | Mateusz Janek <stryku2393@gmail.com> | 2016-12-21 14:27:49 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-01-16 15:52:48 (GMT) |
commit | b42330be21c0d3046aa0e6fdf046a492bddef520 (patch) | |
tree | efd6fbbda9401a36000f2c3b265b9d43310348e6 /Source/cmSourceGroupCommand.h | |
parent | 6154a2cddcdb297b1aef20f501fec9af7d7b5262 (diff) | |
download | CMake-b42330be21c0d3046aa0e6fdf046a492bddef520.zip CMake-b42330be21c0d3046aa0e6fdf046a492bddef520.tar.gz CMake-b42330be21c0d3046aa0e6fdf046a492bddef520.tar.bz2 |
source_group: Add options create groups matching directory tree
Add `TREE` and `PREFIX` arguments to enable this behavior.
Diffstat (limited to 'Source/cmSourceGroupCommand.h')
-rw-r--r-- | Source/cmSourceGroupCommand.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmSourceGroupCommand.h b/Source/cmSourceGroupCommand.h index f533be1..5549096 100644 --- a/Source/cmSourceGroupCommand.h +++ b/Source/cmSourceGroupCommand.h @@ -36,6 +36,12 @@ public: * The name of the command as specified in CMakeList.txt. */ std::string GetName() const CM_OVERRIDE { return "source_group"; } + +private: + bool processTree(const std::vector<std::string>& args, + std::string& errorMsg); + bool checkTreeArgumentsPreconditions(const std::vector<std::string>& args, + std::string& errorMsg) const; }; #endif |