summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndersBroman <anders.broman@ericsson.com>2014-10-29 09:36:06 +0100
committerAnders Broman <a.broman58@gmail.com>2014-10-29 08:38:34 +0000
commitb8df9343aa3d83474a7fc4ecdb14e7e1a570896b (patch)
tree95ba7fa26aaaa4c46142c250504de231ea2151e0
parent451f7f04d5eb1edff46b6978469c799186d1bd41 (diff)
downloadwireshark-b8df9343aa3d83474a7fc4ecdb14e7e1a570896b.tar.gz
Add missing stuff for custom plugins.
Change-Id: I34a35fe789d473b630b80c4f8f30833e0e04d188 Reviewed-on: https://code.wireshark.org/review/4981 Reviewed-by: Anders Broman <a.broman58@gmail.com>
-rw-r--r--CMakeLists.txt1
-rw-r--r--CMakeListsCustom.txt.example6
2 files changed, 7 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a6e4618039..b61f33360f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -922,6 +922,7 @@ set( IN_FILES
plugins/irda/plugin.rc.in
plugins/docsis/plugin.rc.in
plugins/easy_codec/plugin.rc.in
+ ${CUSTOM_PLUGIN_IN_FILES}
ui/doxygen.cfg.in
ui/gtk/doxygen.cfg.in
ui/qt/doxygen.cfg.in
diff --git a/CMakeListsCustom.txt.example b/CMakeListsCustom.txt.example
index 92d28b6c6d..c2b184609d 100644
--- a/CMakeListsCustom.txt.example
+++ b/CMakeListsCustom.txt.example
@@ -26,3 +26,9 @@ set(CUSTOM_PLUGIN_SRC_DIR
# or
# plugins/foo
)
+
+set(CUSTOM_PLUGIN_IN_FILES
+# private_plugins/foo/plugin.rc.in
+# or
+# plugins/foo/plugin.rc.in
+) \ No newline at end of file