Updates and bugfixes of ASTERIX I062
[metze/wireshark/wip.git] / writecap / CMakeLists.txt
1 # CMakeLists.txt
2 #
3 # Wireshark - Network traffic analyzer
4 # By Gerald Combs <gerald@wireshark.org>
5 # Copyright 1998 Gerald Combs
6 #
7 # SPDX-License-Identifier: GPL-2.0-or-later
8 #
9
10 set(WRITECAP_SRC
11         pcapio.c
12 )
13
14 set_source_files_properties(
15         ${WRITECAP_SRC}
16         PROPERTIES
17         COMPILE_FLAGS "${WERROR_COMMON_FLAGS}"
18 )
19
20
21 add_library(writecap STATIC
22         ${WRITECAP_SRC}
23 )
24
25 set_target_properties(writecap PROPERTIES
26         LINK_FLAGS "${WS_LINK_FLAGS}"
27         FOLDER "Libs"
28 )
29
30 #
31 # Editor modelines  -  http://www.wireshark.org/tools/modelines.html
32 #
33 # Local variables:
34 # c-basic-offset: 8
35 # tab-width: 8
36 # indent-tabs-mode: t
37 # End:
38 #
39 # vi: set shiftwidth=8 tabstop=8 noexpandtab:
40 # :indentSize=8:tabSize=8:noTabs=false:
41 #