diff options
author | Naios <naios-dev@live.de> | 2015-03-29 16:13:22 +0200 |
---|---|---|
committer | Naios <naios-dev@live.de> | 2015-03-29 16:13:22 +0200 |
commit | ed4722b6e6314e9dce920fe90138dc714c734251 (patch) | |
tree | 86be10038d4b7f565dd316835f34e2be574e4f6a /CMakeLists.txt | |
parent | 83bbe00785a7ee7c8141d83bfe94a1415466c64d (diff) |
CMake: Use source_groups to represent the source tree
* It let ide's (like vs) display the source tree.
* Disabled by default.
* Soft requirement is cmake >= 2.8.12 .
* Offers 2 modes: flat & hierarchical.
* For detailed description see #14471
* Thanks @click for help and advises.
* Closes #14471
(cherry picked from commit c386711972260aa7b877cdc8cb49d24576ce1902)
Conflicts:
src/server/authserver/CMakeLists.txt
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 56ea65e5d7a..90922cd77e2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -50,6 +50,8 @@ endif() include(CheckPlatform) +include(GroupSources) + # basic packagesearching and setup (further support will be needed, this is a preliminary release!) set(OPENSSL_EXPECTED_VERSION 1.0.0) |