mirror of
https://github.com/fluencelabs/wasmer
synced 2025-03-23 19:40:51 +00:00
40 lines
1.2 KiB
CMake
40 lines
1.2 KiB
CMake
cmake_minimum_required (VERSION 2.6)
|
|
project (WasmerCApiTests)
|
|
|
|
add_executable(test-instantiate test-instantiate.c)
|
|
add_executable(test-import-function test-import-function.c)
|
|
|
|
include(ExternalProject)
|
|
set_directory_properties(PROPERTIES EP_PREFIX ${CMAKE_BINARY_DIR}/rust-build)
|
|
ExternalProject_Add(
|
|
wasmer-runtime-c-api
|
|
DOWNLOAD_COMMAND ""
|
|
CONFIGURE_COMMAND ""
|
|
BUILD_COMMAND cargo build
|
|
COMMAND cargo build
|
|
BINARY_DIR "${CMAKE_SOURCE_DIR}/../"
|
|
INSTALL_COMMAND ""
|
|
LOG_BUILD ON)
|
|
add_dependencies(test-instantiate wasmer-runtime-c-api)
|
|
add_dependencies(test-import-function wasmer-runtime-c-api)
|
|
|
|
|
|
find_library(
|
|
WASMER_LIB NAMES libwasmer_runtime_c_api.dylib libwasmer_runtime_c_api.so libwasmer_runtime_c_api.dll
|
|
PATHS ${CMAKE_SOURCE_DIR}/../../../target/debug/
|
|
)
|
|
|
|
if(NOT WASMER_LIB)
|
|
message(FATAL_ERROR "wasmer library not found")
|
|
endif()
|
|
|
|
target_link_libraries(test-instantiate
|
|
general ${WASMER_LIB})
|
|
target_link_libraries(test-import-function
|
|
general ${WASMER_LIB})
|
|
|
|
enable_testing()
|
|
add_test(test-instantiate test-instantiate)
|
|
add_test(test-import-function test-import-function)
|
|
|