diff options
author | Alon Zakai <alonzakai@gmail.com> | 2019-01-09 18:11:06 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-09 18:11:06 -0800 |
commit | 58f3579974855fe7e4ca3b8ebd7b1f83a4e4dc68 (patch) | |
tree | 9249d4972edd678f3671ba417bb30660cb856e42 | |
parent | 6c2dc6e2117e725565de10fba27c159146c10d9a (diff) | |
download | binaryen-58f3579974855fe7e4ca3b8ebd7b1f83a4e4dc68.tar.gz binaryen-58f3579974855fe7e4ca3b8ebd7b1f83a4e4dc68.tar.bz2 binaryen-58f3579974855fe7e4ca3b8ebd7b1f83a4e4dc68.zip |
remove wasm.js reference from CMakeLists.txt (#1859)
-rw-r--r-- | CMakeLists.txt | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index ad111ae17..aa8548536 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -169,14 +169,11 @@ INSTALL(TARGETS binaryen DESTINATION ${CMAKE_INSTALL_LIBDIR}) INSTALL(FILES src/binaryen-c.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) -# if binaryen.js and wasm.js were built (using "./build-js.sh", currently -# optional), install them +# if binaryen.js was built (using "./build-js.sh", currently +# optional), install it IF(EXISTS "${PROJECT_SOURCE_DIR}/bin/binaryen.js") INSTALL(FILES bin/binaryen.js DESTINATION ${CMAKE_INSTALL_DATADIR}/${PROJECT_NAME}) ENDIF() -IF(EXISTS "${PROJECT_SOURCE_DIR}/bin/wasm.js") - INSTALL(FILES bin/wasm.js DESTINATION ${CMAKE_INSTALL_DATADIR}/${PROJECT_NAME}) -ENDIF() SET(wasm-shell_SOURCES src/tools/wasm-shell.cpp |