Skip to content

Commit

Permalink
c
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe-Abraham committed Sep 10, 2024
1 parent 4104eeb commit b220308
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions CMake/resolve_dependency_modules/fizz.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Copyright (c) Facebook, Inc. and its affiliates.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
include_guard(GLOBAL)

set(FIZZ_VERSION 2024.09.01)
set(FIZZ_BUILD_SHA256_CHECKSUM
fbabbc77e8f90f55f5a20bcaa36d4743f3f6c7a4572d48c6c9a62a88df70dcdb)
set(FIZZ_SOURCE_URL
"https://github.com/facebookincubator/fizz/archive/refs/tags/v2024.05.20.00.tar.gz")

resolve_dependency_url(FIZZ)

message(STATUS "Fetching and building fizz from source")
FetchContent_Declare(
fizz
URL ${FIZZ_SOURCE_URL}
URL_HASH ${FIZZ_BUILD_SHA256_CHECKSUM})


set(FIZZ_INSTALL ON)
set(fizz_BUILD_TESTS OFF)
FetchContent_MakeAvailable(fizz)
list(APPEND CMAKE_PREFIX_PATH ${fizz_BINARY_DIR})

0 comments on commit b220308

Please sign in to comment.