From 7c447f589a08e300b5ff3b6bad1073f3dd8817b7 Mon Sep 17 00:00:00 2001 From: eidheim Date: Tue, 22 Sep 2015 19:18:55 +0200 Subject: [PATCH] MSYS2 has fixed the missing libclang.dll.a file. Please install the latest clang package on MSYS2. --- src/CMakeLists.txt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 640cba3..a1efa98 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -48,11 +48,6 @@ set(cc_files add_library(${project_name} SHARED ${header_files} ${cc_files}) include_directories(${LIBCLANG_INCLUDE_DIRS}) - -#TODO: till clang is fixed on MSYS2 ((lib)clang.dll.a is missing): -if(MSYS) - set(LIBCLANG_LIBRARIES "${CMAKE_INSTALL_PREFIX}/bin/clang.dll") -endif() target_link_libraries(${project_name} ${LIBCLANG_LIBRARIES}) install(TARGETS ${project_name} RUNTIME DESTINATION bin LIBRARY DESTINATION lib)