From 57cb5783617e4dddf6bd7c7b9291f3cf23ea21e3 Mon Sep 17 00:00:00 2001 From: Tristan Konolige Date: Thu, 15 Jul 2021 16:36:17 -0700 Subject: [PATCH] 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. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 845ec28d..57abc266 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")