mirror of
https://github.com/mii443/wasmer.git
synced 2025-08-31 12:49:28 +00:00
Fix Windows build with local dependency
This commit is contained in:
@ -133,7 +133,12 @@ WASM_API_EXTERN own wasm_config_t* wasm_config_new();
|
||||
|
||||
WASM_DECLARE_OWN(engine)
|
||||
|
||||
#ifdef TEST_WASM
|
||||
// During testing, we use a custom implementation of wasm_engine_new
|
||||
wasm_engine_t* wasm_engine_new();
|
||||
#elif
|
||||
WASM_API_EXTERN own wasm_engine_t* wasm_engine_new();
|
||||
#endif
|
||||
WASM_API_EXTERN own wasm_engine_t* wasm_engine_new_with_config(own wasm_config_t*);
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user