aboutsummaryrefslogtreecommitdiffstats
path: root/epan/ftypes
diff options
context:
space:
mode:
authorKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>2009-10-09 19:17:26 +0000
committerKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>2009-10-09 19:17:26 +0000
commitb04e32779572359389b2cbe65f6f2a3ee72e9af0 (patch)
tree683aae44b7b7971a347d526e6c6f1ad20a97e0f8 /epan/ftypes
parent7ca2babc1e307c727f5f8a4e7052f6b630894af0 (diff)
Add epan/ftypes/CMakeLists.txt which creates a static ftypes library
svn path=/trunk/; revision=30442
Diffstat (limited to 'epan/ftypes')
-rw-r--r--epan/ftypes/CMakeLists.txt42
1 files changed, 42 insertions, 0 deletions
diff --git a/epan/ftypes/CMakeLists.txt b/epan/ftypes/CMakeLists.txt
new file mode 100644
index 0000000000..9c5d9f3ad0
--- /dev/null
+++ b/epan/ftypes/CMakeLists.txt
@@ -0,0 +1,42 @@
+# 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.
+#
+
+include_directories(${CMAKE_CURRENT_SOURCE_DIR})
+
+set(FTYPES_FILES
+ ftypes.c
+ ftype-bytes.c
+ ftype-double.c
+ ftype-integer.c
+ ftype-ipv4.c
+ ftype-guid.c
+ ftype-none.c
+ ftype-pcre.c
+ ftype-string.c
+ ftype-time.c
+ ftype-tvbuff.c
+)
+
+add_library(ftypes STATIC
+ ${FTYPES_FILES}
+)