summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarius Elvert <marius.elvert@googlemail.com>2016-12-16 11:14:42 +0100
committerMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2016-12-16 12:22:50 +0100
commitb17cc12dc335d2357141fd27613b7a49ecdfd670 (patch)
tree1452fbe1659bdca4663866ffdea5873dd22acce7
parentf7928c246b101808586ead25ac5cb282e5bc4d2d (diff)
downloaduca-b17cc12dc335d2357141fd27613b7a49ecdfd670.tar.gz
uca-b17cc12dc335d2357141fd27613b7a49ecdfd670.tar.bz2
uca-b17cc12dc335d2357141fd27613b7a49ecdfd670.tar.xz
uca-b17cc12dc335d2357141fd27613b7a49ecdfd670.zip
Install plugin .dll files in plugin directory
-rw-r--r--plugins/file/CMakeLists.txt3
-rw-r--r--plugins/mock/CMakeLists.txt3
2 files changed, 4 insertions, 2 deletions
diff --git a/plugins/file/CMakeLists.txt b/plugins/file/CMakeLists.txt
index 741ac56..8d45944 100644
--- a/plugins/file/CMakeLists.txt
+++ b/plugins/file/CMakeLists.txt
@@ -21,7 +21,8 @@ if (TIFF_FOUND)
target_link_libraries(ucafile uca ${UCA_DEPS} ${TIFF_LIBRARIES})
install(TARGETS ucafile
+ ARCHIVE DESTINATION ${UCA_LIBDIR}
LIBRARY DESTINATION ${UCA_PLUGINDIR}
- RUNTIME DESTINATION ${UCA_BINDIR}
+ RUNTIME DESTINATION ${UCA_PLUGINDIR}
COMPONENT ${UCA_CAMERA_NAME})
endif ()
diff --git a/plugins/mock/CMakeLists.txt b/plugins/mock/CMakeLists.txt
index a53c071..d8f5338 100644
--- a/plugins/mock/CMakeLists.txt
+++ b/plugins/mock/CMakeLists.txt
@@ -16,6 +16,7 @@ add_library(ucamock SHARED
target_link_libraries(ucamock uca m ${UCA_DEPS})
install(TARGETS ucamock
+ ARCHIVE DESTINATION ${UCA_LIBDIR}
LIBRARY DESTINATION ${UCA_PLUGINDIR}
- RUNTIME DESTINATION ${UCA_BINDIR}
+ RUNTIME DESTINATION ${UCA_PLUGINDIR}
COMPONENT ${UCA_CAMERA_NAME})