This repository was archived by the owner on Feb 9, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +13
-1
lines changed Expand file tree Collapse file tree 4 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -7,3 +7,4 @@ find_package(intx CONFIG REQUIRED)
7
7
8
8
add_subdirectory (evmmax)
9
9
add_subdirectory (evmone)
10
+ add_subdirectory (evmone_precompiles)
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ add_library(evmmax STATIC)
6
6
add_library (evmone::evmmax ALIAS evmmax)
7
7
target_compile_features (evmmax PUBLIC cxx_std_20)
8
8
target_include_directories (evmmax PUBLIC ${PROJECT_SOURCE_DIR} /include )
9
- target_link_libraries (evmmax PRIVATE intx::intx)
9
+ target_link_libraries (evmmax PUBLIC intx::intx PRIVATE evmc::evmc_cpp )
10
10
target_sources (
11
11
evmmax PRIVATE
12
12
${PROJECT_SOURCE_DIR} /include /evmmax/evmmax.hpp
Original file line number Diff line number Diff line change
1
+ # evmone: Fast Ethereum Virtual Machine implementation
2
+ # Copyright 2023 The evmone Authors.
3
+ # SPDX-License-Identifier: Apache-2.0
4
+
5
+ add_library (evmone_precompiles STATIC )
6
+ add_library (evmone::precompiles ALIAS evmone_precompiles)
7
+ target_link_libraries (evmone_precompiles PUBLIC evmc::evmc_cpp PRIVATE evmone::evmmax)
8
+ target_sources (
9
+ evmone_precompiles PRIVATE
10
+ ecc.hpp
11
+ )
You can’t perform that action at this time.
0 commit comments