diff options
author | Cheng Shao <cheng.shao@tweag.io> | 2021-01-11 21:38:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-11 12:38:22 -0800 |
commit | 0a1972b56a5bae9874808673041d3a48d3c86153 (patch) | |
tree | 2858792cb1f1d19cd396e55d8bc4145657542ae3 | |
parent | d512d48196abbc997f1d2e30407accc66e375d19 (diff) | |
download | binaryen-0a1972b56a5bae9874808673041d3a48d3c86153.tar.gz binaryen-0a1972b56a5bae9874808673041d3a48d3c86153.tar.bz2 binaryen-0a1972b56a5bae9874808673041d3a48d3c86153.zip |
Fix #3481 (#3482)
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 395b5a562..da9d69ef4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -315,7 +315,7 @@ install(TARGETS binaryen LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}) -install(FILES src/binaryen-c.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) +install(FILES src/binaryen-c.h src/wasm-delegations.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) function(binaryen_add_executable name sources) add_executable(${name} ${sources}) |