forked from ethereum/evmc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
29 lines (23 loc) · 1.05 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# EVMC: Ethereum Client-VM Connector API.
# Copyright 2016 The EVMC Authors.
# Licensed under the Apache License, Version 2.0.
include(GNUInstallDirs)
if(MSVC AND CMAKE_C_COMPILER_VERSION VERSION_LESS 19.20)
# For Visual Studio _before_ 2019
# allow non-constant aggregate initializer.
add_compile_options(
$<$<COMPILE_LANGUAGE:C>:/wd4204>
$<$<COMPILE_LANGUAGE:C>:/wd4221>
)
endif()
add_subdirectory(example_vm)
add_subdirectory(example_precompiles_vm)
add_library(evmc-example-host STATIC example_host.cpp)
target_link_libraries(evmc-example-host PRIVATE evmc::evmc_cpp)
add_executable(evmc-example-static example.c)
target_compile_features(evmc-example-static PRIVATE c_std_99)
target_link_libraries(evmc-example-static PRIVATE evmc-example-host evmc::example-vm-static evmc::evmc)
target_compile_definitions(evmc-example-static PRIVATE STATICALLY_LINKED_EXAMPLE)
add_executable(evmc-example example.c)
target_compile_features(evmc-example PRIVATE c_std_99)
target_link_libraries(evmc-example PRIVATE evmc-example-host evmc::loader)