diff options
author | Remko Tronçon <remko@users.noreply.github.com> | 2024-08-11 19:13:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-11 10:13:07 -0700 |
commit | 1edeaf2948b4afd711e50ba2007ee44503cd80fe (patch) | |
tree | 832fec0f8210551913ab291e5dbfcd414edb0cd8 | |
parent | 63fefe32e7e40efe1050c1908422b29e883c0575 (diff) | |
download | wabt-1edeaf2948b4afd711e50ba2007ee44503cd80fe.tar.gz wabt-1edeaf2948b4afd711e50ba2007ee44503cd80fe.tar.bz2 wabt-1edeaf2948b4afd711e50ba2007ee44503cd80fe.zip |
Install wasm-rt-impl include files (#2452)
Fixes #2451
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 033544fc..f3d059f2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -423,7 +423,7 @@ if (WABT_INSTALL_RULES) endif () if (HAVE_SETJMP_H) - set(WASM_RT_FILES "wasm2c/wasm-rt-impl.h" "wasm2c/wasm-rt-impl.c" "wasm2c/wasm-rt-exceptions-impl.c" "wasm2c/wasm-rt-mem-impl.c") + set(WASM_RT_FILES "wasm2c/wasm-rt-impl.h" "wasm2c/wasm-rt-impl.c" "wasm2c/wasm-rt-exceptions-impl.c" "wasm2c/wasm-rt-mem-impl.c" "wasm2c/wasm-rt-impl-tableops.inc" "wasm2c/wasm-rt-mem-impl-helper.inc") add_library(wasm-rt-impl STATIC ${WASM_RT_FILES}) target_link_libraries(wasm-rt-impl ${CMAKE_THREAD_LIBS_INIT}) |