evmc/test/unittests/CMakeLists.txt

12 lines
340 B
CMake
Raw Normal View History

2018-06-08 10:44:33 +00:00
# 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)
2018-06-08 11:03:14 +00:00
set_target_properties(evmc-test PROPERTIES RUNTIME_OUTPUT_DIRECTORY ..)