mirror of https://github.com/status-im/evmc.git
16 lines
452 B
CMake
16 lines
452 B
CMake
# EVMC: Ethereum Client-VM Connector API.
|
|
# Copyright 2018 Pawel Bylica.
|
|
# Licensed under the MIT License. See the LICENSE file.
|
|
|
|
add_library(
|
|
instructions
|
|
${include_dir}/evmc/instructions.h
|
|
instruction_metrics.c
|
|
instruction_names.c
|
|
)
|
|
|
|
add_library(evmc::instructions ALIAS instructions)
|
|
target_include_directories(instructions PUBLIC ${include_dir})
|
|
|
|
install(TARGETS instructions EXPORT evmcTargets DESTINATION ${CMAKE_INSTALL_LIBDIR})
|