Add cmake compatibility to c-api (#4369)
* Add cmake compatibility to c-api * Add CMake documentation to wasmtime.h * Add CMake instructions in examples * Modify CI for CMake support * Use correct rust in CI * Trigger build * Refactor run-examples * Reintroduce example_to_run in run-examples * Replace run-examples crate with cmake * Fix markdown formatting in examples readme * Fix cmake test quotes * Build rust wasm before cmake tests * Pass CTEST_OUTPUT_ON_FAILURE * Another cmake test * Handle os differences in cmake test * Fix bugs in memory and multimemory examples
This commit is contained in:
73
examples/CMakeLists.txt
Normal file
73
examples/CMakeLists.txt
Normal file
@@ -0,0 +1,73 @@
|
||||
cmake_minimum_required(VERSION 3.10)
|
||||
project(wasmtime-examples)
|
||||
|
||||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/../crates/c-api ${CMAKE_CURRENT_BINARY_DIR}/wasmtime)
|
||||
|
||||
function(CREATE_TARGET TARGET TARGET_PATH)
|
||||
add_executable(wasmtime-${TARGET} ${TARGET_PATH})
|
||||
|
||||
if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
|
||||
target_compile_options(wasmtime-${TARGET} PRIVATE -Wall -Wextra -Wno-deprecated-declarations)
|
||||
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
|
||||
target_compile_options(wasmtime-${TARGET} PRIVATE /W3)
|
||||
endif()
|
||||
|
||||
set_target_properties(wasmtime-${TARGET} PROPERTIES
|
||||
OUTPUT_NAME wasmtime-${TARGET}
|
||||
RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/$<0:>
|
||||
CXX_VISIBILITY_PRESET hidden
|
||||
POSITION_INDEPENDENT_CODE ON)
|
||||
|
||||
target_include_directories(wasmtime-${TARGET} PUBLIC wasmtime)
|
||||
target_link_libraries(wasmtime-${TARGET} PUBLIC wasmtime)
|
||||
add_test(NAME ${TARGET}-c COMMAND $<TARGET_FILE:wasmtime-${TARGET}> WORKING_DIRECTORY ../..)
|
||||
endfunction()
|
||||
|
||||
function(CREATE_RUST_TEST EXAMPLE)
|
||||
if(ARGC GREATER 1)
|
||||
add_test(NAME ${EXAMPLE}-rust COMMAND cargo run --example ${EXAMPLE} --features ${ARGV1} WORKING_DIRECTORY ../..)
|
||||
else()
|
||||
add_test(NAME ${EXAMPLE}-rust COMMAND cargo run --example ${EXAMPLE} WORKING_DIRECTORY ../..)
|
||||
endif()
|
||||
endfunction()
|
||||
function(CREATE_RUST_WASM EXAMPLE TARGET)
|
||||
execute_process(COMMAND cargo build -p example-${EXAMPLE}-wasm --target ${TARGET})
|
||||
endfunction()
|
||||
|
||||
# Enable testing
|
||||
enable_testing()
|
||||
|
||||
# Add all examples
|
||||
create_target(externref externref.c)
|
||||
create_target(fib-debug fib-debug/main.c)
|
||||
create_target(fuel fuel.c)
|
||||
create_target(gcd gcd.c)
|
||||
create_target(hello hello.c)
|
||||
create_target(interrupt interrupt.c)
|
||||
create_target(linking linking.c)
|
||||
create_target(memory memory.c)
|
||||
create_target(multi multi.c)
|
||||
create_target(multimemory multimemory.c)
|
||||
create_target(serialize serialize.c)
|
||||
create_target(threads threads.c)
|
||||
create_target(wasi wasi/main.c)
|
||||
|
||||
# Add rust tests
|
||||
create_rust_wasm(fib-debug wasm32-unknown-unknown)
|
||||
create_rust_wasm(tokio wasm32-wasi)
|
||||
create_rust_wasm(wasi wasm32-wasi)
|
||||
create_rust_test(epochs)
|
||||
create_rust_test(externref)
|
||||
create_rust_test(fib-debug)
|
||||
create_rust_test(fuel)
|
||||
create_rust_test(gcd)
|
||||
create_rust_test(hello)
|
||||
create_rust_test(interrupt)
|
||||
create_rust_test(linking)
|
||||
create_rust_test(memory)
|
||||
create_rust_test(multi)
|
||||
create_rust_test(multimemory)
|
||||
create_rust_test(serialize)
|
||||
create_rust_test(threads)
|
||||
create_rust_test(wasi)
|
||||
create_rust_test(tokio wasmtime-wasi/tokio)
|
||||
Reference in New Issue
Block a user