From 20112ed8467c492a923b0ed2fb2d878c1a14ba44 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Wed, 18 Feb 2015 17:19:04 -0500 Subject: [PATCH] cmake: install the dll file to the correct directory --- lib/CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index e7886ac55..49a340938 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -98,4 +98,7 @@ if(WIN32) endif() endif() -install(TARGETS ${LIB_NAME} DESTINATION lib) +install(TARGETS ${LIB_NAME} + ARCHIVE DESTINATION lib + LIBRARY DESTINATION lib + RUNTIME DESTINATION bin) -- 2.40.0