Remove HOMEPAGE_URL from cmake project.

The HOMEPAGE_URL is a CMake 3.12ism, and seems to cause some issues on
3.10

Change-Id: I567bd86bb86db7d383efcde8526e57ce8714844f
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/30641
Reviewed-by: Corentin Wallez <cwallez@chromium.org>
Commit-Queue: dan sinclair <dsinclair@chromium.org>
This commit is contained in:
dan sinclair 2020-10-20 19:46:21 +00:00 committed by Commit Bot service account
parent ecd46ab123
commit 1877c27c98
1 changed files with 2 additions and 2 deletions

View File

@ -18,12 +18,12 @@ cmake_minimum_required(VERSION 3.10)
# becomes available.
# When upgrading to CMake 3.12 we should add CONFIGURE_DEPENDS to DawnGenerator to rerun CMake in
# case any of the generator files changes. We should also remove the CACHE "" FORCE stuff to
# override options in third_party dependencies.
# override options in third_party dependencies. We can also add the HOMEPAGE_URL
# entry to the project `HOMEPAGE_URL "https://dawn.googlesource.com/dawn"`
project(
Dawn
DESCRIPTION "Dawn, a WebGPU implementation"
HOMEPAGE_URL "https://dawn.googlesource.com/dawn"
LANGUAGES C CXX
)