evmc/examples/CMakeLists.txt

9 lines
211 B
CMake
Raw Normal View History

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