File: add-cmake-cmake_minimum_required-command.patch

package info (click to toggle)
oxygencursors 0.0.2012-06-kde4.8-7
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 1,732 kB
  • sloc: sh: 54; makefile: 53; python: 39
file content (23 lines) | stat: -rw-r--r-- 655 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
From: =?utf-8?q?Christian_G=C3=B6ttsche?= <cgzones@googlemail.com>
Date: Tue, 12 May 2020 17:58:24 +0200
Subject: add cmake cmake_minimum_required() command

Forwarded: not-needed

As the used source is only a subdirectory of the upstream source it does
not contain a cmake_minimum_required() command.

Set the required version to the cmake version available in stable: 3.13
---
 CMakeLists.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 2efa4fe..03299f6 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,3 +1,4 @@
+cmake_minimum_required(VERSION 3.13)
 project(oxygencursors)
 
 include(cursors.cmake)