MSWSP: heur dissectors take a data pointer
[wireshark-wip.git] / echld / CMakeLists.txt
blob0637809133f8ea3e50b40b0dfabf60861b472ad2
1 # CMakeLists.txt
3 # $Id$
5 # Wireshark - Network traffic analyzer
6 # By Gerald Combs <gerald@wireshark.org>
7 # Copyright 1998 Gerald Combs
9 # This program is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License
11 # as published by the Free Software Foundation; either version 2
12 # of the License, or (at your option) any later version.
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write to the Free Software
21 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 set(CLEAN_FILES
25         echld-util.c
26         parent.c
29 set(DIRTY_FILES
30         child.c
31         common.c
32         dispatcher.c
35 set(echld_LIBS
36         ${GLIB2_LIBRARIES}
39 set(ECHLD_FILES
40         ${CLEAN_FILES}
41         ${DIRTY_FILES}
44 if (WERROR)
45         set_source_files_properties(
46                 ${CLEAN_FILES}
47                 PROPERTIES
48                 COMPILE_FLAGS -Werror
49         )
50 endif()
53 add_library(echld ${LINK_MODE_LIB}
54         ${ECHLD_FILES}
57 set(FULL_SO_VERSION "0.0.0")
59 set_target_properties(echld PROPERTIES COMPILE_DEFINITIONS "WS_BUILD_DLL")
60 set_target_properties(echld PROPERTIES LINK_FLAGS "${WS_LINK_FLAGS}")
61 set_target_properties(echld PROPERTIES VERSION ${FULL_SO_VERSION} SOVERSION 0)
63 # discover and substitute list of include directories for ABI compatibility
64 # checks
65 #get_directory_property(INCLUDE_DIRS INCLUDE_DIRECTORIES)
66 #list(REMOVE_DUPLICATES INCLUDE_DIRS)
67 #string(REGEX REPLACE ";" "\n" INCLUDE_DIRS "${INCLUDE_DIRS}")
68 #configure_file(../abi-descriptor.template abi-descriptor.xml)
70 # ABI compliance checker can be obtained from
71 # http://ispras.linux-foundation.org/index.php/ABI_compliance_checker
72 # Checked using version 1.21.12
73 #file(GLOB HEADERS *.h)
74 #file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/abi-check-headers)
76 #file(COPY ${HEADERS} ../ws_symbol_export.h DESTINATION abi-check-headers)
78 #add_custom_command(OUTPUT libwsutil.abi.tar.gz
79 #       COMMAND cp ../config.h abi-check-headers/
80 #       COMMAND abi-compliance-checker -l libwsutil -v1 ${FULL_SO_VERSION}
81 #               -relpath ${CMAKE_CURRENT_BINARY_DIR} -dump-abi abi-descriptor.xml
82 #               || cat logs/libwsutil/[0-9]*/log.txt
83 #       COMMAND cp abi_dumps/libwsutil/libwsutil_* libwsutil.abi.tar.gz
84 #       COMMAND rm -rf abi-check-headers/* abi_dumps
85 #       DEPENDS ${HEADERS} wsutil)
86 #add_custom_target(dumpabi-libwsutil DEPENDS libwsutil.abi.tar.gz)
88 target_link_libraries(echld ${echld_LIBS})
90 if(NOT ${ENABLE_STATIC})
91         install(TARGETS echld
92                 LIBRARY DESTINATION lib
93                 RUNTIME DESTINATION lib
94                 ARCHIVE DESTINATION lib
95         )
96 endif()