mirror of https://github.com/status-im/evmc.git
Merge pull request #362 from ethereum/move-example-vm
examples: Move example_vm into the examples/example_vm subdirectory
This commit is contained in:
commit
83d2acffa2
2
Doxyfile
2
Doxyfile
|
@ -102,7 +102,7 @@ WARN_LOGFILE =
|
||||||
INPUT = \
|
INPUT = \
|
||||||
include/evmc/ \
|
include/evmc/ \
|
||||||
docs/ \
|
docs/ \
|
||||||
examples/example_vm.c
|
examples/example_vm/example_vm.c
|
||||||
INPUT_ENCODING = UTF-8
|
INPUT_ENCODING = UTF-8
|
||||||
FILE_PATTERNS =
|
FILE_PATTERNS =
|
||||||
RECURSIVE = NO
|
RECURSIVE = NO
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
// Copyright 2018-2019 The EVMC Authors.
|
// Copyright 2018-2019 The EVMC Authors.
|
||||||
// Licensed under the Apache License, Version 2.0.
|
// Licensed under the Apache License, Version 2.0.
|
||||||
|
|
||||||
//go:generate gcc -shared ../../../examples/example_vm.c -I../../../include -o example_vm.so
|
//go:generate gcc -shared ../../../examples/example_vm/example_vm.c -I../../../include -o example_vm.so
|
||||||
|
|
||||||
package evmc
|
package evmc
|
||||||
|
|
||||||
|
|
|
@ -10,29 +10,11 @@ if(NOT CMAKE_CXX_STANDARD)
|
||||||
endif()
|
endif()
|
||||||
set(CMAKE_DEBUG_POSTFIX "")
|
set(CMAKE_DEBUG_POSTFIX "")
|
||||||
|
|
||||||
|
add_subdirectory(example_vm)
|
||||||
add_subdirectory(example_precompiles_vm)
|
add_subdirectory(example_precompiles_vm)
|
||||||
|
|
||||||
|
|
||||||
add_library(evmc-example-host STATIC example_host.cpp)
|
add_library(evmc-example-host STATIC example_host.cpp)
|
||||||
target_link_libraries(evmc-example-host PRIVATE evmc)
|
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)
|
add_executable(evmc-example example.c)
|
||||||
target_link_libraries(evmc-example PRIVATE evmc-example-host evmc-example-vm evmc)
|
target_link_libraries(evmc-example PRIVATE evmc-example-host evmc-example-vm-static evmc)
|
||||||
|
|
||||||
if(EVMC_INSTALL)
|
|
||||||
install(TARGETS evmc-example-vm
|
|
||||||
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
||||||
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
||||||
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
|
||||||
)
|
|
||||||
endif()
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "example_host.h"
|
#include "example_host.h"
|
||||||
#include "example_vm.h"
|
#include "example_vm/example_vm.h"
|
||||||
|
|
||||||
#include <evmc/helpers.h>
|
#include <evmc/helpers.h>
|
||||||
|
|
||||||
|
|
|
@ -5,4 +5,12 @@
|
||||||
add_library(evmc-example-precompiles-vm SHARED example_precompiles_vm.cpp)
|
add_library(evmc-example-precompiles-vm SHARED example_precompiles_vm.cpp)
|
||||||
target_link_libraries(evmc-example-precompiles-vm PRIVATE evmc)
|
target_link_libraries(evmc-example-precompiles-vm PRIVATE evmc)
|
||||||
set_source_files_properties(example_precompiles_vm.cpp PROPERTIES
|
set_source_files_properties(example_precompiles_vm.cpp PROPERTIES
|
||||||
COMPILE_DEFINITIONS PROJECT_VERSION="${PROJECT_VERSION}")
|
COMPILE_DEFINITIONS PROJECT_VERSION="${PROJECT_VERSION}")
|
||||||
|
|
||||||
|
if(EVMC_INSTALL)
|
||||||
|
install(TARGETS evmc-example-precompiles-vm
|
||||||
|
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
||||||
|
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
||||||
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
# EVMC: Ethereum Client-VM Connector API.
|
||||||
|
# Copyright 2019 The EVMC Authors.
|
||||||
|
# Licensed under the Apache License, Version 2.0.
|
||||||
|
|
||||||
|
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.cpp PROPERTIES
|
||||||
|
COMPILE_DEFINITIONS PROJECT_VERSION="${PROJECT_VERSION}")
|
||||||
|
|
||||||
|
if(EVMC_INSTALL)
|
||||||
|
install(TARGETS evmc-example-vm
|
||||||
|
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
||||||
|
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
||||||
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
||||||
|
)
|
||||||
|
endif()
|
|
@ -7,7 +7,7 @@
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include "../../examples/example_host.h"
|
#include "../../examples/example_host.h"
|
||||||
#include "../../examples/example_vm.h"
|
#include "../../examples/example_vm/example_vm.h"
|
||||||
|
|
||||||
#include <evmc/evmc.hpp>
|
#include <evmc/evmc.hpp>
|
||||||
#include <evmc/helpers.hpp>
|
#include <evmc/helpers.hpp>
|
||||||
|
|
Loading…
Reference in New Issue