aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2018-05-21 18:06:58 +0200
committerPascal Quantin <pascal.quantin@gmail.com>2018-05-21 16:08:39 +0000
commite6c832c49a66dc88b305574d8875eb811a58124e (patch)
tree3338c9005ee54b13a11b223190c92d9b2e3817ad
parentec421a07b5dc7ae7490755b037417530b7db0a66 (diff)
Update some CMakeListsCustom.txt templates
Change-Id: I3d4d5d160bfa08f1837ca571c2ff29241893cb2e Reviewed-on: https://code.wireshark.org/review/27685 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
-rw-r--r--CMakeListsCustom.txt.example2
-rw-r--r--epan/dissectors/CMakeListsCustom.txt.example4
2 files changed, 3 insertions, 3 deletions
diff --git a/CMakeListsCustom.txt.example b/CMakeListsCustom.txt.example
index f97c470b49..32c62c2dea 100644
--- a/CMakeListsCustom.txt.example
+++ b/CMakeListsCustom.txt.example
@@ -12,7 +12,7 @@
set(CUSTOM_PLUGIN_SRC_DIR
# private_plugins/foo
# or
-# plugins/foo
+# plugins/epan/foo
)
#
diff --git a/epan/dissectors/CMakeListsCustom.txt.example b/epan/dissectors/CMakeListsCustom.txt.example
index bfca63fe76..357c77d1f3 100644
--- a/epan/dissectors/CMakeListsCustom.txt.example
+++ b/epan/dissectors/CMakeListsCustom.txt.example
@@ -9,11 +9,11 @@
# You can add custom builtin dissectors here by replaceing foo with your dissectors name.
set(CUSTOM_DISSECTOR_SRC
-# packet-foo.c
+# ${CMAKE_CURRENT_SOURCE_DIR}/packet-foo.c
)
set(CUSTOM_DIRTY_ASN1_DISSECTOR_SRC
-# packet-bar.c
+# ${CMAKE_CURRENT_SOURCE_DIR}/packet-bar.c
)
#