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:
parent
ecd46ab123
commit
1877c27c98
|
@ -18,12 +18,12 @@ cmake_minimum_required(VERSION 3.10)
|
||||||
# becomes available.
|
# becomes available.
|
||||||
# When upgrading to CMake 3.12 we should add CONFIGURE_DEPENDS to DawnGenerator to rerun CMake in
|
# 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
|
# 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(
|
project(
|
||||||
Dawn
|
Dawn
|
||||||
DESCRIPTION "Dawn, a WebGPU implementation"
|
DESCRIPTION "Dawn, a WebGPU implementation"
|
||||||
HOMEPAGE_URL "https://dawn.googlesource.com/dawn"
|
|
||||||
LANGUAGES C CXX
|
LANGUAGES C CXX
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue