Skip to content

Commit 5be949e

Browse files
committed
[LLVM-C] Fix omission of INSTALL_WITH_TOOLCHAIN to llvm_add_library()
Due to a misstake with r365902 that tried to simplify the install with toolchain logic LLVM-C.dll was no longer being installed. Patch By: Jakob Bornecrantz llvm-svn: 370271
1 parent 6c7687e commit 5be949e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/tools/llvm-shlib/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,6 @@ if(MSVC)
182182
VERBATIM )
183183

184184
# Finally link the target.
185-
add_llvm_library(LLVM-C SHARED ${SOURCES} DEPENDS intrinsics_gen)
185+
add_llvm_library(LLVM-C SHARED INSTALL_WITH_TOOLCHAIN ${SOURCES} DEPENDS intrinsics_gen)
186186

187187
endif()

0 commit comments

Comments
 (0)