mirror of https://github.com/status-im/evmc.git
38 lines
1.1 KiB
CMake
38 lines
1.1 KiB
CMake
# EVMC: Ethereum Client-VM Connector API.
|
|
# Copyright 2018-2019 The EVMC Authors.
|
|
# Licensed under the Apache License, Version 2.0.
|
|
|
|
include(GoogleTest)
|
|
|
|
hunter_add_package(GTest)
|
|
find_package(GTest CONFIG REQUIRED)
|
|
|
|
# Disable support for std::tr1::tuple in GTest. This causes problems in Visual Studio 2015.
|
|
set_target_properties(GTest::gtest PROPERTIES INTERFACE_COMPILE_DEFINITIONS GTEST_HAS_TR1_TUPLE=0)
|
|
|
|
add_library(loader-mocked STATIC ${PROJECT_SOURCE_DIR}/lib/loader/loader.c)
|
|
target_link_libraries(loader-mocked PRIVATE evmc::evmc)
|
|
target_compile_definitions(loader-mocked PRIVATE EVMC_LOADER_MOCK=1)
|
|
|
|
add_executable(
|
|
evmc-unittests
|
|
loader_mock.h
|
|
test_cpp.cpp
|
|
test_helpers.cpp
|
|
test_instructions.cpp
|
|
test_loader.cpp
|
|
)
|
|
|
|
target_link_libraries(
|
|
evmc-unittests
|
|
PRIVATE
|
|
loader-mocked
|
|
evmc::example-vm-static
|
|
evmc::example-precompiles-vm-static
|
|
evmc::instructions
|
|
GTest::gtest_main
|
|
)
|
|
set_target_properties(evmc-unittests PROPERTIES RUNTIME_OUTPUT_DIRECTORY ..)
|
|
|
|
gtest_add_tests(TARGET evmc-unittests TEST_PREFIX ${PROJECT_NAME}/unittests/)
|