Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/pytorch/cpuinfo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Konolige <tristan.konolige@gmail.com>2021-07-16 02:36:17 +0300
committerTristan Konolige <tristan.konolige@gmail.com>2021-07-16 02:36:17 +0300
commit57cb5783617e4dddf6bd7c7b9291f3cf23ea21e3 (patch)
tree10c3c8ce90ca948acad05e41b1bc34adba13f54b
parent6c89db05524d1d52a88251ef23f29c46ec873a99 (diff)
Remove HOMEPAGE_URL from cmake project definition
HOMEPAGE_URL in cmake's project function is only supported by cmake >= 3.12. In order to support versions down to 3.5, it needs to be removed.
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 845ec28..57abc26 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -4,7 +4,7 @@ CMAKE_MINIMUM_REQUIRED(VERSION 3.5 FATAL_ERROR)
PROJECT(
cpuinfo
LANGUAGES C CXX
- HOMEPAGE_URL https://github.com/pytorch/cpuinfo)
+ )
# ---[ Options.
SET(CPUINFO_LIBRARY_TYPE "default" CACHE STRING "Type of cpuinfo library (shared, static, or default) to build")