Skip to content

Commit

Permalink
Remove HOMEPAGE_URL from cmake project definition
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
tkonolige committed Jul 15, 2021
1 parent 6c89db0 commit 57cb578
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 57cb578

Please sign in to comment.