aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/dcerpc
diff options
context:
space:
mode:
authorkrj <krj@f5534014-38df-0310-8fa8-9805f1628bb7>2009-10-10 06:45:04 +0000
committerkrj <krj@f5534014-38df-0310-8fa8-9805f1628bb7>2009-10-10 06:45:04 +0000
commit5511ba81c7f5b7cff7259ba237bb62c07281a48c (patch)
treee2d31ecd55885dce183a3322dac7e452a72ee110 /epan/dissectors/dcerpc
parent8d1f473987c18f6d56d750c027611fe624040e40 (diff)
First stab at autogenerating budb dissector
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30463 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/dcerpc')
-rw-r--r--epan/dissectors/dcerpc/budb/CMakeLists.txt37
1 files changed, 37 insertions, 0 deletions
diff --git a/epan/dissectors/dcerpc/budb/CMakeLists.txt b/epan/dissectors/dcerpc/budb/CMakeLists.txt
new file mode 100644
index 0000000000..98bcf8e499
--- /dev/null
+++ b/epan/dissectors/dcerpc/budb/CMakeLists.txt
@@ -0,0 +1,37 @@
+# CMakeLists.txt
+#
+# $Id$
+#
+# Wireshark - Network traffic analyzer
+# By Gerald Combs <gerald@wireshark.org>
+# Copyright 1998 Gerald Combs
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or {at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+
+set( PROTOCOL_NAME budb )
+
+ADD_CUSTOM_COMMAND(
+ OUTPUT
+ packet-dcerpc-${PROTOCOL_NAME}.c
+ packet-dcerpc-${PROTOCOL_NAME}.h
+ COMMAND
+ idl2wrs ${PROTOCOL_NAME}
+ DEPENDS
+ ${PROTOCOL_NAME}.idl
+ ${PROTOCOL_NAME}.cnf
+ packet-dcerpc-${PROTOCOL_NAME}-template.c
+ packet-dcerpc-${PROTOCOL_NAME}-template.h
+)