mirror of
https://github.com/status-im/evmc.git
synced 2025-02-24 00:48:09 +00:00
10 lines
406 B
CMake
10 lines
406 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 instructions.c)
|
|
add_library(evmc::instructions ALIAS instructions)
|
|
target_include_directories(instructions PUBLIC ${include_dir})
|
|
|
|
install(TARGETS instructions EXPORT evmcTargets DESTINATION ${CMAKE_INSTALL_LIBDIR})
|