2018-08-30 12:49:20 +00:00
|
|
|
# EVMC: Ethereum Client-VM Connector API.
|
2019-04-24 14:12:13 +00:00
|
|
|
# Copyright 2016-2019 The EVMC Authors.
|
2019-03-14 01:55:16 +00:00
|
|
|
# Licensed under the Apache License, Version 2.0.
|
2018-04-13 06:39:47 +00:00
|
|
|
|
2018-08-30 16:19:26 +00:00
|
|
|
include(GNUInstallDirs)
|
|
|
|
|
2018-08-30 12:49:20 +00:00
|
|
|
if(NOT CMAKE_CXX_STANDARD)
|
|
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
|
|
set(CMAKE_CXX_EXTENSIONS OFF)
|
|
|
|
endif()
|
2018-08-30 16:16:15 +00:00
|
|
|
set(CMAKE_DEBUG_POSTFIX "")
|
|
|
|
|
2019-06-28 13:29:28 +00:00
|
|
|
add_subdirectory(example_vm)
|
2019-05-09 05:55:04 +00:00
|
|
|
add_subdirectory(example_precompiles_vm)
|
|
|
|
|
2018-08-30 16:16:15 +00:00
|
|
|
add_library(evmc-example-host STATIC example_host.cpp)
|
|
|
|
target_link_libraries(evmc-example-host PRIVATE evmc)
|
2018-08-30 12:49:20 +00:00
|
|
|
|
2019-08-08 10:42:43 +00:00
|
|
|
add_executable(evmc-example-static example.c)
|
2019-11-04 15:35:02 +00:00
|
|
|
target_link_libraries(evmc-example-static PRIVATE evmc-example-host evmc::example-vm-static evmc)
|
2019-08-08 10:42:43 +00:00
|
|
|
target_compile_definitions(evmc-example-static PRIVATE STATICALLY_LINKED_EXAMPLE)
|
|
|
|
|
2018-08-31 11:08:26 +00:00
|
|
|
add_executable(evmc-example example.c)
|
2019-08-08 10:42:43 +00:00
|
|
|
target_link_libraries(evmc-example PRIVATE evmc-example-host evmc evmc::loader)
|