evmc/examples/CMakeLists.txt

9 lines
211 B
CMake
Raw Normal View History

2018-04-13 06:39:47 +00:00
add_subdirectory(examplevm)
2017-01-09 22:42:24 +00:00
add_executable(example-capi capi.c)
2018-04-13 06:39:47 +00:00
target_link_libraries(example-capi PRIVATE evmc evmc-examplevm)
2018-04-10 12:12:12 +00:00
if(NOT MSVC)
target_compile_options(example-capi PRIVATE -Wno-extra)
endif()