samples/native-lib: Add a bit more complicated example (#1643)

Add test_hello sample and update the document
This commit is contained in:
YAMAMOTO Takashi
2022-10-27 16:06:14 +09:00
committed by GitHub
parent 264fdfafed
commit bc58778c34
4 changed files with 56 additions and 2 deletions

View File

@ -78,6 +78,7 @@ target_link_libraries(iwasm vmlib -lpthread -lm -ldl)
################ native libraries ###############
add_library (test_add SHARED test_add.c)
add_library (test_sqrt SHARED test_sqrt.c)
add_library (test_hello SHARED test_hello.c)
################ wasm application ###############
add_subdirectory(wasm-app)