blob: d020b1b111a0139bf3ed1b07ebfedf05cb70a6d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# CMakeListsCustom.txt
#
# Wireshark - Network traffic analyzer
# By Gerald Combs <gerald@wireshark.org>
# Copyright 1998 Gerald Combs
#
# SPDX-License-Identifier: GPL-2.0-or-later
#
# You can add custom GUI files here by replacing the commented out file foo with your file.
#Add GUI source files here
set(WIRESHARK_CUSTOM_QT_HEADERS
# foo.h
)
set(WIRESHARK_CUSTOM_QT_SRCS
# foo.c
)
#Add your tap source files here:
set(WIRESHARK_CUSTOM_TAP_SRC
# tap_foo.c
)
|