mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 22:25:40 +00:00
12 lines
310 B
CMake
12 lines
310 B
CMake
|
cmake_minimum_required (VERSION 2.6)
|
||
|
project (WasmerCApiTests)
|
||
|
|
||
|
add_executable(test-instantiate test-instantiate.c)
|
||
|
|
||
|
target_link_libraries(test-instantiate
|
||
|
general "${CMAKE_SOURCE_DIR}/../../../target/debug/libwasmer_runtime_c_api.dylib")
|
||
|
|
||
|
enable_testing()
|
||
|
add_test(test-instantiate test-instantiate)
|
||
|
|