mirror of
https://github.com/status-im/evmc.git
synced 2025-02-23 08:28:15 +00:00
16 lines
497 B
CMake
16 lines
497 B
CMake
# EVMC: Ethereum Client-VM Connector API.
|
|
# Copyright 2018-2019 The EVMC Authors.
|
|
# Licensed under the Apache License, Version 2.0.
|
|
|
|
# Local Hunter configuration.
|
|
|
|
set(gtest_cxx_flags "${CMAKE_CXX_FLAGS_INIT} -DGTEST_HAS_TR1_TUPLE=0")
|
|
|
|
hunter_config(
|
|
GTest
|
|
VERSION 1.8.1
|
|
URL https://github.com/google/googletest/archive/release-1.8.1.tar.gz
|
|
SHA1 152b849610d91a9dfa1401293f43230c2e0c33f8
|
|
CMAKE_ARGS BUILD_GMOCK=OFF gtest_force_shared_crt=ON CMAKE_CXX_FLAGS=${gtest_cxx_flags}
|
|
)
|