From 4118e150f8841a507e3fcb546902d1e07150e4a2 Mon Sep 17 00:00:00 2001 From: nOOb3167 Date: Mon, 19 Feb 2018 15:01:10 +0100 Subject: [PATCH] CMakeLists use the source_group command to improve look and feel when generating Visual Studio projects. The TREE argument of source_group appears in CMake 3.8 therefore check for version. --- src/CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index e7759b7a7..f38022c5d 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -530,6 +530,11 @@ set(server_SRCS ) list(SORT server_SRCS) +if ((CMAKE_VERSION VERSION_GREATER 3.8) OR (CMAKE_VERSION VERSION_EQUAL 3.8)) + source_group(TREE ${PROJECT_SOURCE_DIR} PREFIX "Source Files" FILES ${client_SRCS}) + source_group(TREE ${PROJECT_SOURCE_DIR} PREFIX "Source Files" FILES ${server_SRCS}) +endif() + include_directories( ${PROJECT_BINARY_DIR} ${PROJECT_SOURCE_DIR}