aboutsummaryrefslogtreecommitdiffstats
path: root/epan/crypt
diff options
context:
space:
mode:
authorKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>2009-10-09 19:05:29 +0000
committerKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>2009-10-09 19:05:29 +0000
commite4d4f81768e45cd7b3c86009d2e0360e2fc4e08c (patch)
tree320d9459f4bcebf4d438ba5f0d2f2f801c094b4c /epan/crypt
parentbd052039c2a06a8da1576b6d608de33f95f10bfb (diff)
Add epan/crypt/CMakeLists.txt which creates a static crypt library
svn path=/trunk/; revision=30440
Diffstat (limited to 'epan/crypt')
-rw-r--r--epan/crypt/CMakeLists.txt43
1 files changed, 43 insertions, 0 deletions
diff --git a/epan/crypt/CMakeLists.txt b/epan/crypt/CMakeLists.txt
new file mode 100644
index 0000000000..ad912e510e
--- /dev/null
+++ b/epan/crypt/CMakeLists.txt
@@ -0,0 +1,43 @@
+# 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(CRYPT_FILES
+ airpdcap.c
+ airpdcap_ccmp.c
+ airpdcap_debug.c
+ airpdcap_rijndael.c
+ airpdcap_tkip.c
+ airpdcap_wep.c
+ crypt-aes.c
+ crypt-des.c
+ crypt-md4.c
+ crypt-md5.c
+ crypt-rc4.c
+ crypt-sha1.c
+)
+
+add_library(crypt STATIC
+ ${CRYPT_FILES}
+)