diff options
author | Jörg Mayer <jmayer@loplof.de> | 2009-09-21 00:19:07 +0000 |
---|---|---|
committer | Jörg Mayer <jmayer@loplof.de> | 2009-09-21 00:19:07 +0000 |
commit | 95182116aac88bf415c13697b9b9734a66b3867a (patch) | |
tree | 95f44e60773d6863de5a503b6cea0dcb1848e37c /plugins/irda/CMakeLists.txt | |
parent | c9dcf6c41583f92a2ea138af1a5af5f8c5af71fe (diff) | |
download | wireshark-95182116aac88bf415c13697b9b9734a66b3867a.tar.gz wireshark-95182116aac88bf415c13697b9b9734a66b3867a.tar.bz2 wireshark-95182116aac88bf415c13697b9b9734a66b3867a.zip |
CMake:
- Add opcua to the list of plugins to build
- Link the gtk stuff statically into wireshark
- Beginnings of "make install"
- Change a few things about install paths
svn path=/trunk/; revision=30029
Diffstat (limited to 'plugins/irda/CMakeLists.txt')
-rw-r--r-- | plugins/irda/CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/irda/CMakeLists.txt b/plugins/irda/CMakeLists.txt index c95fad93a0..983b96ecbf 100644 --- a/plugins/irda/CMakeLists.txt +++ b/plugins/irda/CMakeLists.txt @@ -69,3 +69,9 @@ add_library(irda MODULE ${PLUGIN_FILES} ) +install(TARGETS irda + LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}/@CPACK_PACKAGE_NAME@/plugins/${CPACK_PACKAGE_VERSION} + RUNTIME DESTINATION ${CMAKE_INSTALL_LIBDIR}/@CPACK_PACKAGE_NAME@/plugins/${CPACK_PACKAGE_VERSION} + ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}/@CPACK_PACKAGE_NAME@/plugins/${CPACK_PACKAGE_VERSION} +) + |