aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wspython
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2009-09-10 07:04:54 +0000
committerJörg Mayer <jmayer@loplof.de>2009-09-10 07:04:54 +0000
commit9250a69a9976617c735679aa5383e53802e5b43e (patch)
tree99eb52cccfc2a1672730ac456218933c25d614a1 /epan/wspython
parent159904bdc49b8d3c35503d057d16bff7336767e1 (diff)
Update to add the last missing detection stuff.
Some of it is untested, kerberos is currently a hack. Apart from that, package detection should be complete. svn path=/trunk/; revision=29838
Diffstat (limited to 'epan/wspython')
-rw-r--r--epan/wspython/CMakeLists.txt32
1 files changed, 32 insertions, 0 deletions
diff --git a/epan/wspython/CMakeLists.txt b/epan/wspython/CMakeLists.txt
new file mode 100644
index 0000000000..320dc3852c
--- /dev/null
+++ b/epan/wspython/CMakeLists.txt
@@ -0,0 +1,32 @@
+# 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(WSPYTHON_FILES
+ wspy_register.c
+ wspy_proto.c
+)
+
+add_library(wspython STATIC
+ ${WSPYTHON_FILES}
+)
+