Fix CMake error (#7074) by bumping the required CMake version past 3.8.1 (#7075)

This commit is contained in:
nOOb3167 2018-02-25 12:26:41 +01:00 committed by SmallJoker
parent 66372e75d9
commit 88a7160ad8
1 changed files with 3 additions and 1 deletions

View File

@ -530,7 +530,9 @@ set(server_SRCS
)
list(SORT server_SRCS)
if ((CMAKE_VERSION VERSION_GREATER 3.8) OR (CMAKE_VERSION VERSION_EQUAL 3.8))
# Avoid source_group on broken CMake version.
# see issue #7074 #7075
if (CMAKE_VERSION VERSION_GREATER 3.8.1)
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()