Update required cmake version to 3.7

This fixes the bug described in #129 in cmake in https://gitlab.kitware.com/cmake/cmake/-/issues/14201 where cuda_add_library would not pick up the include files as given by target_include_directories.
This was fixed in cmake version 3.7, and therefore the fix simply increases our required cmake version.
This commit is contained in:
chrstphr 2020-08-03 16:16:09 +02:00
parent ed60618af6
commit e59996ee40
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@
# author: Tyson Jones (testing)
# CMake initialisation.
cmake_minimum_required(VERSION 3.1)
cmake_minimum_required(VERSION 3.7)
message(STATUS "CMake version: ${CMAKE_VERSION}")
message(STATUS "CMake build type: ${CMAKE_BUILD_TYPE}")