diff options
| author | Simon Tatham <anakin@pobox.com> | 2021-04-03 08:03:25 +0100 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2021-04-03 08:03:25 +0100 |
| commit | a1bab40025a821909eea7d47e6d0af5c27338833 (patch) | |
| tree | 5db8bbb3bcc77ce7f17d1ab871f3659828f41d87 /CMakeLists.txt | |
| parent | e763b9ead86df6a92666525f8d2ed0385e251c61 (diff) | |
| download | puzzles-a1bab40025a821909eea7d47e6d0af5c27338833.zip puzzles-a1bab40025a821909eea7d47e6d0af5c27338833.tar.gz puzzles-a1bab40025a821909eea7d47e6d0af5c27338833.tar.bz2 puzzles-a1bab40025a821909eea7d47e6d0af5c27338833.tar.xz | |
Support earlier versions of CMake.
At least, for the Unix build, so as to support Debian stable and a
couple of prior Ubuntu LTSes.
Not much needed to change in the cmake scripts; the only noticeable
difference was that the 'install' command needs an explicit RUNTIME
DESTINATION.
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 86c6c08..058107a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.16) +cmake_minimum_required(VERSION 3.5) project(puzzles LANGUAGES C) |