[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
This commit is contained in:
Tom Stellard 2019-08-28 22:59:04 +00:00
parent 6c7687ed67
commit 5be949e3d0
1 changed files with 1 additions and 1 deletions

View File

@ -182,6 +182,6 @@ if(MSVC)
VERBATIM )
# Finally link the target.
add_llvm_library(LLVM-C SHARED ${SOURCES} DEPENDS intrinsics_gen)
add_llvm_library(LLVM-C SHARED INSTALL_WITH_TOOLCHAIN ${SOURCES} DEPENDS intrinsics_gen)
endif()