From Jiri Engelthaler via
[metze/wireshark/wip.git] / wsutil / 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 IF(WIN32)
25   set(WSUTIL_PLATFORM_FILES
26     file_util.c
27     unicode-utils.c
28   )
29 ENDIF(WIN32)
30
31 set(WSUTIL_FILES
32 #               @GETOPT_LO@     # wsgetopt.c
33 #               @INET_ATON_LO@  # inet_aton.c
34 #               @INET_NTOP_LO@  # inet_ntop.c
35 #               @INET_PTON_LO@  # inet_pton.c
36 #               @STRNCASECMP_LO@ # strncasecmp.c
37 #               @STRPTIME_LO@   # strptime.c
38   aes.c
39   airpdcap_wep.c
40   crash_info.c
41   crc10.c
42   crc16.c
43   crc16-plain.c
44   crc32.c
45   crc6.c
46   crc7.c
47   crc8.c
48   crc11.c
49   crcdrm.c
50   des.c
51   eax.c
52   g711.c
53   md4.c
54   md5.c
55   mpeg-audio.c
56   nstime.c
57   privileges.c
58   sha1.c
59   strnatcmp.c
60   str_util.c
61   rc4.c
62   report_err.c
63   swar.c
64   tempfile.c
65   type_util.c
66   u3.c
67   ${WSUTIL_PLATFORM_FILES}
68 )
69
70 set(wsutil_LIBS
71   ${GLIB2_LIBRARIES}
72   ${GCRYPT_LIBRARIES}
73 )
74
75 set(CLEAN_FILES
76   ${WSUTIL_FILES}
77 )
78
79 if (WERROR)
80   set_source_files_properties(
81     ${CLEAN_FILES}
82     PROPERTIES
83     COMPILE_FLAGS -Werror
84   )
85 endif()
86
87 add_library(wsutil ${LINK_MODE_LIB}
88   ${WSUTIL_FILES}
89 )
90
91 set(FULL_SO_VERSION "0.0.0")
92
93 set_target_properties(wsutil PROPERTIES COMPILE_DEFINITIONS "WS_BUILD_DLL")
94 set_target_properties(wsutil PROPERTIES LINK_FLAGS "${WS_LINK_FLAGS}")
95 set_target_properties(wsutil PROPERTIES VERSION ${FULL_SO_VERSION} SOVERSION 0)
96
97 # discover and substitute list of include directories for ABI compatibility
98 # checks
99 get_directory_property(INCLUDE_DIRS INCLUDE_DIRECTORIES)
100 list(REMOVE_DUPLICATES INCLUDE_DIRS)
101 string(REGEX REPLACE ";" "\n" INCLUDE_DIRS "${INCLUDE_DIRS}")
102 configure_file(../abi-descriptor.template abi-descriptor.xml)
103
104 # ABI compliance checker can be obtained from
105 # http://ispras.linux-foundation.org/index.php/ABI_compliance_checker
106 # Checked using version 1.21.12
107 file(GLOB HEADERS *.h)
108 file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/abi-check-headers)
109
110 file(COPY ${HEADERS} ../ws_symbol_export.h DESTINATION abi-check-headers)
111
112 add_custom_command(OUTPUT libwsutil.abi.tar.gz
113         COMMAND cp ../config.h abi-check-headers/
114         COMMAND abi-compliance-checker -l libwsutil -v1 ${FULL_SO_VERSION}
115                 -relpath ${CMAKE_CURRENT_BINARY_DIR} -dump-abi abi-descriptor.xml
116                 || cat logs/libwsutil/[0-9]*/log.txt
117         COMMAND cp abi_dumps/libwsutil/libwsutil_* libwsutil.abi.tar.gz
118         COMMAND rm -rf abi-check-headers/* abi_dumps
119         DEPENDS ${HEADERS} wsutil)
120 add_custom_target(dumpabi-libwsutil DEPENDS libwsutil.abi.tar.gz)
121
122 target_link_libraries(wsutil ${wsutil_LIBS})
123
124 if(NOT ${ENABLE_STATIC})
125         install(TARGETS wsutil
126                 LIBRARY DESTINATION lib
127                 RUNTIME DESTINATION lib
128                 ARCHIVE DESTINATION lib
129         )
130 endif()
131