mirror of https://github.com/status-im/evmc.git
12 lines
340 B
CMake
12 lines
340 B
CMake
# EVMC: Ethereum Client-VM Connector API.
|
|
# Copyright 2018 Pawel Bylica.
|
|
# Licensed under the MIT License. See the LICENSE file.
|
|
|
|
add_executable(
|
|
evmc-test
|
|
test_instructions.cpp
|
|
)
|
|
|
|
target_link_libraries(evmc-test PRIVATE instructions GTest::gtest GTest::main)
|
|
set_target_properties(evmc-test PROPERTIES RUNTIME_OUTPUT_DIRECTORY ..)
|