We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cefbd97 commit eb5b908Copy full SHA for eb5b908
unittests/CMakeLists.txt
@@ -34,7 +34,11 @@ if(WIN32)
34
set_property(TARGET ${name} APPEND_STRING PROPERTY LINK_FLAGS "${MSVC_EXPORTS}")
35
else()
36
if(EMSCRIPTEN)
37
- target_link_libraries(${name} PUBLIC ${ARG_LIBRARIES} ${gtest_libs} clangCppInterOp)
+ add_llvm_library(${name}
38
+ DISABLE_LLVM_LINK_LLVM_DYLIB
39
+ LINK_LIBS
40
+ ${gtest_libs} ${link_libs}
41
+ )
42
43
target_link_libraries(${name} PUBLIC ${ARG_LIBRARIES} ${gtest_libs} pthread)
44
endif()
0 commit comments