mirror of https://github.com/status-im/evmc.git
35 lines
1.0 KiB
CMake
35 lines
1.0 KiB
CMake
# EVMC: Ethereum Client-VM Connector API.
|
|
# Copyright 2016-2019 The EVMC Authors.
|
|
# Licensed under the Apache License, Version 2.0.
|
|
|
|
include(GNUInstallDirs)
|
|
|
|
if(NOT CMAKE_CXX_STANDARD)
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
set(CMAKE_CXX_EXTENSIONS OFF)
|
|
endif()
|
|
set(CMAKE_DEBUG_POSTFIX "")
|
|
|
|
|
|
add_library(evmc-example-host STATIC example_host.cpp)
|
|
target_link_libraries(evmc-example-host PRIVATE evmc)
|
|
|
|
|
|
add_library(evmc-example-vm SHARED example_vm.c)
|
|
target_link_libraries(evmc-example-vm PRIVATE evmc)
|
|
|
|
add_library(evmc-example-vm-static STATIC example_vm.c)
|
|
target_link_libraries(evmc-example-vm-static PRIVATE evmc)
|
|
|
|
set_source_files_properties(example_vm.c PROPERTIES COMPILE_DEFINITIONS PROJECT_VERSION="${PROJECT_VERSION}")
|
|
|
|
|
|
add_executable(evmc-example example.c)
|
|
target_link_libraries(evmc-example PRIVATE evmc-example-host evmc-example-vm evmc)
|
|
|
|
|
|
install(TARGETS evmc-example-vm
|
|
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
|
) |