diff options
author | Immanuel Haffner <haffner.immanuel@gmail.com> | 2019-11-27 02:20:59 +0100 |
---|---|---|
committer | Alon Zakai <azakai@google.com> | 2019-11-26 17:20:59 -0800 |
commit | 5c81d48c70e62e11d9a8fd0fd8231fac10c3bf29 (patch) | |
tree | fe92869eca3333c0cbfe1fa6283e160c292136e5 /src/emscripten-optimizer | |
parent | ec53d11e0792884e1125fe5a1a437a5eff260259 (diff) | |
download | binaryen-5c81d48c70e62e11d9a8fd0fd8231fac10c3bf29.tar.gz binaryen-5c81d48c70e62e11d9a8fd0fd8231fac10c3bf29.tar.bz2 binaryen-5c81d48c70e62e11d9a8fd0fd8231fac10c3bf29.zip |
Collect all object files from the object libraries in a CMake variable (#2477)
using the `$<TARGET_OBJECTS:objlib>` syntax. Use this variable when
adding `libbinaryen` as static or shared library. Additionally, use the
variable with the object files to simplify the `TARGET_LINK_LIBRARIES`
commands: add the object libraries to the sources of executables and
drop the use of our libraries in `TARGET_LINK_LIBRARIES`. (Object
libraries cannot be linked but must be used as sources. See
https://cmake.org/pipermail/cmake/2018-June/067721.html)
Diffstat (limited to 'src/emscripten-optimizer')
-rw-r--r-- | src/emscripten-optimizer/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emscripten-optimizer/CMakeLists.txt b/src/emscripten-optimizer/CMakeLists.txt index 6c302b991..a2bb7d802 100644 --- a/src/emscripten-optimizer/CMakeLists.txt +++ b/src/emscripten-optimizer/CMakeLists.txt @@ -3,4 +3,4 @@ SET(emscripten-optimizer_SOURCES parser.cpp simple_ast.cpp ) -ADD_LIBRARY(emscripten-optimizer STATIC ${emscripten-optimizer_SOURCES}) +ADD_LIBRARY(emscripten-optimizer OBJECT ${emscripten-optimizer_SOURCES}) |