summary refs log tree commit diff stats
path: root/results/scraper/box64/940
blob: c62434119ee62bb47152e978ae5310f70c6d878c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
cmakelist.txt need an update
I got this:
``` shell
CMake Deprecation Warning at CMakeLists.txt:1 (cmake_minimum_required):
  Compatibility with CMake < 3.5 will be removed from a future version of
  CMake.

  Update the VERSION argument <min> value or use a ...<max> suffix to tell
  CMake that the project does not need compatibility with older versions.
```
So change this:
cmake_minimum_required(VERSION 3.4) to
cmake_minimum_required(VERSION 3.4...3.5)