diff options
author | Derek Schuff <dschuff@chromium.org> | 2021-03-04 19:14:14 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-04 19:14:14 -0800 |
commit | f71927c7318a25d2dd2b2a6fd0cafc210e568fd5 (patch) | |
tree | ea1bf0ea8acee865cf320f4558740215b9a9b80b | |
parent | 2bd5f60769506479316811da2b07913d0412abe0 (diff) | |
download | binaryen-f71927c7318a25d2dd2b2a6fd0cafc210e568fd5.tar.gz binaryen-f71927c7318a25d2dd2b2a6fd0cafc210e568fd5.tar.bz2 binaryen-f71927c7318a25d2dd2b2a6fd0cafc210e568fd5.zip |
Add a CMake option to install only the tools (#3654)
This option will avoid installing the static library and headers, for
distributions that want to be as small as possible, and don't need
to support development with libbinaryen (such as emsdk).
It still installs the dynamic library since that's needed by the
tools.
-rw-r--r-- | CMakeLists.txt | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 9c50ddc11..e2b9a396e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -327,12 +327,15 @@ else() message(STATUS "Building libbinaryen as shared library.") add_library(binaryen SHARED ${binaryen_SOURCES} ${binaryen_objs}) endif() -install(TARGETS binaryen - RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} - LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} - ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}) - -install(FILES src/binaryen-c.h src/wasm-delegations.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) +if(NOT (BUILD_STATIC_LIB AND BYN_INSTALL_TOOLS_ONLY)) + install(TARGETS binaryen + RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} + LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} + ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}) +endif() +if(NOT BYN_INSTALL_TOOLS_ONLY) + install(FILES src/binaryen-c.h src/wasm-delegations.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) +endif() function(binaryen_add_executable name sources) add_executable(${name} ${sources}) |