mirror of https://github.com/status-im/evmc.git
Bootstrap vmtester tool
This commit is contained in:
parent
69a932f1c8
commit
31a333df14
|
@ -26,7 +26,12 @@ project(evmc)
|
|||
add_library(evmc INTERFACE)
|
||||
target_include_directories(evmc INTERFACE include)
|
||||
|
||||
option(EVMC_BUILD_EXAMPLES "Build EVMC examples" ON)
|
||||
option(EVMC_BUILD_TESTS "Build EVMC tests and test tools" OFF)
|
||||
if(EVMC_BUILD_TESTS)
|
||||
add_subdirectory(test)
|
||||
endif()
|
||||
|
||||
option(EVMC_BUILD_EXAMPLES "Build EVMC examples" OFF)
|
||||
if(EVMC_BUILD_EXAMPLES)
|
||||
add_subdirectory(examples)
|
||||
endif()
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
# EVMC -- Ethereum Client-VM Connector API
|
||||
# Copyright 2018 Pawel Bylica.
|
||||
# Licensed under the MIT License. See the LICENSE file.
|
||||
|
||||
add_subdirectory(vmtester)
|
|
@ -0,0 +1,5 @@
|
|||
# EVMC -- Ethereum Client-VM Connector API
|
||||
# Copyright 2018 Pawel Bylica.
|
||||
# Licensed under the MIT License. See the LICENSE file.
|
||||
|
||||
add_executable(vmtester vmtester.cpp)
|
|
@ -0,0 +1,8 @@
|
|||
// EVMC -- Ethereum Client-VM Connector API
|
||||
// Copyright 2018 Pawel Bylica.
|
||||
// Licensed under the MIT License. See the LICENSE file.
|
||||
|
||||
int main()
|
||||
{
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue