mirror of https://github.com/status-im/evmc.git
23 lines
967 B
CMake
23 lines
967 B
CMake
# EVMC: Ethereum Client-VM Connector API.
|
|
# Copyright 2019 The EVMC Authors.
|
|
# Licensed under the Apache License, Version 2.0.
|
|
|
|
add_library(example-precompiles-vm SHARED example_precompiles_vm.cpp example_precompiles_vm.h)
|
|
add_library(evmc::example-precompiles-vm ALIAS example-precompiles-vm)
|
|
target_link_libraries(example-precompiles-vm PRIVATE evmc)
|
|
|
|
add_library(example-precompiles-vm-static STATIC example_precompiles_vm.cpp example_precompiles_vm.h)
|
|
add_library(evmc::example-precompiles-vm-static ALIAS example-precompiles-vm-static)
|
|
target_link_libraries(example-precompiles-vm-static PRIVATE evmc)
|
|
|
|
set_source_files_properties(example_precompiles_vm.cpp PROPERTIES
|
|
COMPILE_DEFINITIONS PROJECT_VERSION="${PROJECT_VERSION}")
|
|
|
|
if(EVMC_INSTALL)
|
|
install(TARGETS example-precompiles-vm
|
|
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
|
)
|
|
endif()
|