From 5c4455a394cff7e3de2e1d98720ede4cd3bdd216 Mon Sep 17 00:00:00 2001 From: Kelly Wilson Date: Wed, 22 Apr 2009 14:40:56 -0600 Subject: [PATCH] Change needed for mingw --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4afb1316..f9efaa63 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -217,7 +217,7 @@ set_target_properties( # LDFLAGS should actually be in target property LINK_FLAGS, but this works, and gets around linking problems target_link_libraries(${LDC_EXE} "${LLVM_LDFLAGS} ${LLVM_LIBS}" ${LIBCONFIG_LDFLAGS}) if(WIN32) - target_link_libraries(${LDC_EXE} psapi) + target_link_libraries(${LDC_EXE} config++ imagehlp psapi) set(CONF_INST_DIR bin) endif(WIN32)