From Tomasz Mon via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8503 :
[metze/wireshark/wip.git] / wiretap / CMakeLists.txt
1 # CMakeLists.txt
2 #
3 # $Id$
4 #
5 # Wireshark - Network traffic analyzer
6 # By Gerald Combs <gerald@wireshark.org>
7 # Copyright 1998 Gerald Combs
8 #
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.
13 #
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.
18 #
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.
22 #
23
24
25 set(WIRETAP_FILES
26         5views.c
27         aethra.c
28         ascendtext.c
29         atm.c
30         ber.c
31         btsnoop.c
32         buffer.c
33         camins.c
34         catapult_dct2000.c
35         commview.c
36         cosine.c
37         csids.c
38         daintree-sna.c
39         dbs-etherwatch.c
40         dct3trace.c
41         erf.c
42         eyesdn.c
43         file_access.c
44         file_wrappers.c
45         hcidump.c
46         i4btrace.c
47         ipfix.c
48         iptrace.c
49         iseries.c
50         k12.c
51         lanalyzer.c
52         libpcap.c
53         mpeg.c
54         mime_file.c
55         mp2t.c
56         netmon.c
57         netscaler.c
58         netscreen.c
59         nettl.c
60         network_instruments.c
61         netxray.c
62         ngsniffer.c
63         packetlogger.c
64         pcap-common.c
65         pcapng.c
66         peekclassic.c
67         peektagged.c
68         pppdump.c
69         radcom.c
70         snoop.c
71         tnef.c
72         toshiba.c
73         visual.c
74         vms.c
75         vwr.c
76         wtap.c
77 )
78
79 set(CLEAN_FILES
80         ${WIRETAP_FILES}
81 )
82
83 if (WERROR)
84         set_source_files_properties(
85                 ${CLEAN_FILES}
86                 PROPERTIES
87                 COMPILE_FLAGS -Werror
88         )
89 endif()
90
91 add_lex_files(WIRETAP_FILES
92         ascend_scanner.l
93         k12text.l
94 )
95
96 add_yacc_files(WIRETAP_FILES
97         ascend.y
98 )
99
100 set(wiretap_LIBS
101         ${GLIB2_LIBRARIES}
102         ${GMODULE2_LIBRARIES}
103         ${ZLIB_LIBRARIES}
104         wsutil
105 )
106
107 add_library(wiretap ${LINK_MODE_LIB}
108         ${WIRETAP_FILES}
109 )
110
111 set(FULL_SO_VERSION "0.0.0")
112
113 set_target_properties(wiretap PROPERTIES COMPILE_DEFINITIONS "WS_BUILD_DLL")
114 set_target_properties(wiretap PROPERTIES LINK_FLAGS "${WS_LINK_FLAGS}")
115 set_target_properties(wiretap PROPERTIES VERSION ${FULL_SO_VERSION} SOVERSION 0)
116
117 # discover and substitute list of include directories for ABI compatibility
118 # checks
119 get_directory_property(INCLUDE_DIRS INCLUDE_DIRECTORIES)
120 list(REMOVE_DUPLICATES INCLUDE_DIRS)
121 string(REGEX REPLACE ";" "\n" INCLUDE_DIRS "${INCLUDE_DIRS}")
122 configure_file(../abi-descriptor.template abi-descriptor.xml)
123
124 # ABI compliance checker can be obtained from
125 # http://ispras.linux-foundation.org/index.php/ABI_compliance_checker
126 # Checked using version 1.21.12
127 file(GLOB HEADERS *.h)
128 file(MAKE_DIRECTORY abi-check-headers)
129
130 file(COPY ${HEADERS} ../ws_symbol_export.h DESTINATION abi-check-headers)
131
132 add_custom_command(OUTPUT libwiretap.abi.tar.gz
133         COMMAND cp ../config.h abi-check-headers/
134         COMMAND abi-compliance-checker -l libwiretap -v1 ${FULL_SO_VERSION}
135                 -relpath ${CMAKE_CURRENT_BINARY_DIR} -dump-abi abi-descriptor.xml
136                 || cat logs/libwiretap/[0-9]*/log.txt
137         COMMAND cp abi_dumps/libwiretap/libwiretap_* libwiretap.abi.tar.gz
138         COMMAND rm -rf abi-check-headers/* abi_dumps
139         DEPENDS ${HEADERS} wiretap)
140 add_custom_target(dumpabi-libwiretap DEPENDS libwiretap.abi.tar.gz)
141
142 target_link_libraries(wiretap ${wiretap_LIBS})
143
144 if(NOT ${ENABLE_STATIC})
145         install(TARGETS wiretap
146                 LIBRARY DESTINATION lib
147                 RUNTIME DESTINATION lib
148                 ARCHIVE DESTINATION lib
149         )
150 endif()
151