From cbc3d3f772627505d9c695e7a414b91e83915c84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Mayer?= Date: Fri, 25 Sep 2009 18:09:42 +0000 Subject: Try to add tpg, but it seems it doesn't build with autofoo either. svn path=/trunk/; revision=30151 --- plugins/tpg/CMakeLists.txt | 74 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 plugins/tpg/CMakeLists.txt (limited to 'plugins/tpg') diff --git a/plugins/tpg/CMakeLists.txt b/plugins/tpg/CMakeLists.txt new file mode 100644 index 0000000000..c6106df8eb --- /dev/null +++ b/plugins/tpg/CMakeLists.txt @@ -0,0 +1,74 @@ +# CMakeLists.txt +# +# $Id$ +# +# Wireshark - Network traffic analyzer +# By Gerald Combs +# 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(PLUGIN_FILES + http-parser.c + packet-http.c +) + +include_directories(${CMAKE_CURRENT_BINARY_DIR}) + +set(_tpg ${CMAKE_SOURCE_DIR}/tools/tpg) + +ADD_CUSTOM_COMMAND( + OUTPUT + TPG.pm + COMMAND ${YAPP_EXECUTABLE} + -v + -m TPG + ${_tpg}/tpg.yp + DEPENDS + ${_tpg}/tpg.yp + +) + +ADD_CUSTOM_COMMAND( + OUTPUT + http-parser.h + http-parser.c + COMMAND ${PERL_EXECUTABLE} + -I${CMAKE_BINARY_DIR} + -I${_tpg} + ${_tpg}/tpg.pl + ${CMAKE_CURRENT_SOURCE_DIR}/http.tpg + DEPENDS + ${_tpg}/tpg.pl + TPG.pm + ${_tpg}/V2P.pm + ${CMAKE_CURRENT_SOURCE_DIR}/http.tpg +) + +# todo +# Do I need any of this or is this handled by type MODULE? +# asn1_la_LDFLAGS = -module -avoid-version + +add_library(tpg MODULE + ${PLUGIN_FILES} +) + +install(TARGETS tpg + LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}/@CPACK_PACKAGE_NAME@/plugins/${CPACK_PACKAGE_VERSION} + RUNTIME DESTINATION ${CMAKE_INSTALL_LIBDIR}/@CPACK_PACKAGE_NAME@/plugins/${CPACK_PACKAGE_VERSION} + ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}/@CPACK_PACKAGE_NAME@/plugins/${CPACK_PACKAGE_VERSION} +) + -- cgit v1.2.1