mirror of
https://github.com/status-im/evmc.git
synced 2025-02-22 16:08:22 +00:00
9 lines
211 B
CMake
9 lines
211 B
CMake
|
|
add_subdirectory(examplevm)
|
|
|
|
add_executable(example-capi capi.c)
|
|
target_link_libraries(example-capi PRIVATE evmc evmc-examplevm)
|
|
if(NOT MSVC)
|
|
target_compile_options(example-capi PRIVATE -Wno-extra)
|
|
endif()
|