sharkd: add voip-calls and voip-convs taps
[metze/wireshark/wip.git] / 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 if(DEFINED ENV{FORCE_CMAKE_NINJA_NON_VERBOSE})
10         #
11         # Forcibly unset CMAKE_VERBOSE_MAKEFILE,
12         # to make *CERTAIN* that we don't do
13         # anything verbose here!
14         #
15         unset(CMAKE_VERBOSE_MAKEFILE CACHE)
16 endif()
17
18 # Needed for add_custom_command() WORKING_DIRECTORY generator expressions
19 cmake_minimum_required(VERSION 3.13)
20 if(POLICY CMP0083)
21         cmake_policy(SET CMP0083 NEW)
22 endif()
23 if(POLICY CMP0092)
24         cmake_policy(SET CMP0092 NEW)
25 endif()
26 if(POLICY CMP0135)
27         cmake_policy(SET CMP0135 NEW)
28 endif()
29
30 if(WIN32 AND NOT DEFINED ENV{MSYSTEM})
31         set(_project_name Wireshark)
32         set(_log_project_name Logray)
33 else()
34         set(_project_name wireshark)
35         set(_log_project_name logray)
36 endif()
37
38 project(${_project_name} C CXX)
39
40 if(WIN32)
41         set(_msystem False)
42         set(_repository False)
43         if(DEFINED ENV{MSYSTEM})
44                 set(_msystem $ENV{MSYSTEM})
45                 message(STATUS "Using MSYS2 with MSYSTEM=${_msystem}")
46         elseif(MSVC)
47                 set(_repository True)
48                 message(STATUS "Using 3rd party repository")
49         else()
50                 # Neither own package repository nor MSYS2 repository.
51         endif()
52         set(USE_MSYSTEM ${_msystem} CACHE INTERNAL "Use MSYS2 subsystem")
53         set(HAVE_MSYSTEM ${USE_MSYSTEM}) # For config.h
54         set(USE_REPOSITORY ${_repository} CACHE INTERNAL "Use Wireshark 3rd Party Repository")
55 endif()
56
57 # Updated by tools/make-version.py
58 set(PROJECT_MAJOR_VERSION 4)
59 set(PROJECT_MINOR_VERSION 1)
60 set(PROJECT_PATCH_VERSION 0)
61 set(PROJECT_BUILD_VERSION 0)
62 set(PROJECT_VERSION_EXTENSION "")
63
64 if(DEFINED ENV{WIRESHARK_VERSION_EXTRA})
65         set(PROJECT_VERSION_EXTENSION "$ENV{WIRESHARK_VERSION_EXTRA}")
66 endif()
67
68 set(PROJECT_VERSION "${PROJECT_MAJOR_VERSION}.${PROJECT_MINOR_VERSION}.${PROJECT_PATCH_VERSION}${PROJECT_VERSION_EXTENSION}")
69
70 set(LOG_PROJECT_NAME ${_log_project_name})
71 set(LOG_PROJECT_MAJOR_VERSION 0)
72 set(LOG_PROJECT_MINOR_VERSION 8)
73 set(LOG_PROJECT_PATCH_VERSION 3)
74 set(LOG_PROJECT_VERSION "${LOG_PROJECT_MAJOR_VERSION}.${LOG_PROJECT_MINOR_VERSION}.${LOG_PROJECT_PATCH_VERSION}${PROJECT_VERSION_EXTENSION}")
75
76 include( CMakeOptions.txt )
77
78 # We require minimum C11
79 set(CMAKE_C_STANDARD 11)
80 set(CMAKE_C_STANDARD_REQUIRED ON)
81
82 # We require minimum C++11
83 set(CMAKE_CXX_STANDARD 11)
84 set(CMAKE_CXX_STANDARD_REQUIRED ON)
85 set(CMAKE_CXX_EXTENSIONS OFF)
86
87 message(STATUS "Generating build using CMake ${CMAKE_VERSION}")
88
89 if(USE_MSYSTEM)
90         # Use the deprecated FindPythonInterp.cmake module to Work around bugs and odd behavior in MSYS2 CMake
91         # searching in the wrong paths for python3.exe using FindPython3.cmake
92         find_package(PythonInterp REQUIRED)
93         set(Python3_EXECUTABLE ${PYTHON_EXECUTABLE} CACHE FILEPATH "")
94 else()
95         find_package(Python3 3.6 REQUIRED)
96 endif()
97
98 # Set a default build type if none was specified
99 set(_default_build_type "RelWithDebInfo")
100 if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
101         set(CMAKE_BUILD_TYPE "${_default_build_type}" CACHE STRING "Choose the type of build." FORCE)
102         # Set the possible values of build type for cmake-gui
103         set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release" "MinSizeRel" "RelWithDebInfo")
104 endif()
105
106 # Build type is ignored by multi-config generators.
107 if (NOT CMAKE_CONFIGURATION_TYPES)
108         message(STATUS "Using \"${CMAKE_GENERATOR}\" generator and build type \"${CMAKE_BUILD_TYPE}\"")
109 else()
110         message(STATUS "Using \"${CMAKE_GENERATOR}\" generator (multi-config)")
111 endif()
112
113 #Where to find local cmake scripts
114 set(WS_CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/modules)
115 set(CMAKE_MODULE_PATH ${WS_CMAKE_MODULE_PATH})
116
117 # CMake >= 3.9.0 supports LTO/IPO.
118 if (ENABLE_LTO)
119         include(CheckIPOSupported)
120         check_ipo_supported(RESULT lto_supported OUTPUT lto_output)
121         if(lto_supported)
122                 set(CMAKE_INTERPROCEDURAL_OPTIMIZATION_RELEASE TRUE)
123                 message(STATUS "LTO/IPO is enabled for Release configuration")
124         else()
125                 message(STATUS "LTO/IPO requested but it is not supported by the compiler: ${lto_output}")
126         endif()
127 else()
128         message(STATUS "LTO/IPO is not enabled")
129 endif()
130
131 # If our target platform is enforced by our generator, set
132 # WIRESHARK_TARGET_PLATFORM accordingly. Otherwise use
133 # %WIRESHARK_TARGET_PLATFORM%.
134
135 if(WIN32)
136         if(DEFINED ENV{WIRESHARK_TARGET_PLATFORM})
137                 string(TOLOWER $ENV{WIRESHARK_TARGET_PLATFORM} _target_platform)
138                 set(WIRESHARK_TARGET_PLATFORM ${_target_platform})
139         elseif(USE_MSYSTEM MATCHES "MINGW64|CLANG64|UCRT64")
140                 # https://www.msys2.org/docs/environments
141                 #    MSYS2 comes with different environments/subsystems and
142                 #    the first thing you have to decide is which one to use.
143                 #    The differences among the environments are mainly environment
144                 #    variables, default compilers/linkers, architecture,
145                 #    system libraries used etc. If you are unsure, go with UCRT64.
146                 set(WIRESHARK_TARGET_PLATFORM x64)
147         elseif(USE_MSYSTEM)
148                 if($ENV{MSYSTEM_CARCH} MATCHES "x86_64")
149                         set(WIRESHARK_TARGET_PLATFORM x64)
150                 elseif($ENV{MSYSTEM_CARCH} MATCHES "i686")
151                         set(WIRESHARK_TARGET_PLATFORM win32)
152                 elseif($ENV{MSYSTEM_CARCH} MATCHES "aarch64")
153                         set(WIRESHARK_TARGET_PLATFORM "arm64")
154                 else()
155                         set(WIRESHARK_TARGET_PLATFORM "$ENV{MSYSTEM_CARCH}")
156                 endif()
157         elseif($ENV{Platform} MATCHES arm64 OR CMAKE_GENERATOR_PLATFORM MATCHES arm64)
158                 set(WIRESHARK_TARGET_PLATFORM arm64)
159         elseif(CMAKE_CL_64 OR CMAKE_GENERATOR MATCHES x64)
160                 set(WIRESHARK_TARGET_PLATFORM x64)
161         else()
162                 message(WARNING "Assuming \"x64\" target platform")
163                 set(WIRESHARK_TARGET_PLATFORM x64)
164         endif()
165
166         if(WIRESHARK_TARGET_PLATFORM MATCHES "win32")
167                 message(FATAL_ERROR "Deprecated target platform ${WIRESHARK_TARGET_PLATFORM}. See https://gitlab.com/wireshark/wireshark/-/issues/17779 for details.")
168         elseif(NOT (WIRESHARK_TARGET_PLATFORM MATCHES "x64" OR WIRESHARK_TARGET_PLATFORM MATCHES "arm64"))
169                 message(FATAL_ERROR "Invalid target platform: ${WIRESHARK_TARGET_PLATFORM}")
170         endif()
171
172         # Sanity check
173         if(MSVC AND DEFINED ENV{PLATFORM})
174                 string(TOLOWER $ENV{PLATFORM} _vs_platform)
175                 if(
176                         (_vs_platform STREQUAL "x64" AND NOT WIRESHARK_TARGET_PLATFORM STREQUAL "x64")
177                         OR
178                         (_vs_platform STREQUAL "arm64" AND NOT WIRESHARK_TARGET_PLATFORM STREQUAL "arm64")
179                 )
180                         message(FATAL_ERROR "The PLATFORM environment variable (${_vs_platform})"
181                                 " doesn't match the generator platform (${WIRESHARK_TARGET_PLATFORM})")
182                 endif()
183         endif()
184
185         message(STATUS
186                 "Building for ${WIRESHARK_TARGET_PLATFORM}"
187         )
188
189         if(NOT CMAKE_CROSSCOMPILING)
190                 find_package(PowerShell REQUIRED)
191         endif()
192
193         # Determine where the 3rd party libraries will be
194         if(USE_REPOSITORY)
195                 if( DEFINED ENV{WIRESHARK_LIB_DIR} )
196                         # The buildbots set WIRESHARK_LIB_DIR but not WIRESHARK_BASE_DIR.
197                         file( TO_CMAKE_PATH "$ENV{WIRESHARK_LIB_DIR}" _PROJECT_LIB_DIR )
198                 elseif( DEFINED ENV{WIRESHARK_BASE_DIR} )
199                         file( TO_CMAKE_PATH "$ENV{WIRESHARK_BASE_DIR}" _WS_BASE_DIR )
200                         set( _PROJECT_LIB_DIR "${_WS_BASE_DIR}/wireshark-${WIRESHARK_TARGET_PLATFORM}-libs" )
201                 else()
202                         # Don't know what to do
203                         message(FATAL_ERROR "Neither WIRESHARK_BASE_DIR or WIRESHARK_LIB_DIR are defined")
204                 endif()
205
206                 # Download third-party libraries
207                 file (TO_NATIVE_PATH ${CMAKE_SOURCE_DIR}/tools/win-setup.ps1 _win_setup)
208                 file (TO_NATIVE_PATH ${_PROJECT_LIB_DIR} _ws_lib_dir)
209                 file (TO_NATIVE_PATH ${CMAKE_COMMAND} _win_cmake_command)
210
211                 # Is it possible to have a one-time, non-cached option in CMake? If
212                 # so, we could add a "-DFORCE_WIN_SETUP" which passes -Force to
213                 # win-setup.ps1.
214                 execute_process(
215                         COMMAND ${POWERSHELL_COMMAND} "\"${_win_setup}\"" -Destination "${_ws_lib_dir}" -Platform ${WIRESHARK_TARGET_PLATFORM} -CMakeExecutable "\"${_win_cmake_command}\""
216                         RESULT_VARIABLE _win_setup_failed
217                         ERROR_VARIABLE _win_setup_error_output
218                 )
219                 if(_win_setup_failed)
220                         message(FATAL_ERROR "Windows setup (win-setup.ps1) failed: ${_win_setup_error_output}.")
221                 endif()
222
223                 set(EXTRA_INSTALLER_DIR ${_ws_lib_dir})
224
225                 # XXX Add a dependency on ${_ws_lib_dir}/current_tag.txt?
226         else()
227                 set(EXTRA_INSTALLER_DIR ${CMAKE_BINARY_DIR}/packaging/nsis)
228         endif()
229
230         include(FetchContent)
231         set(LIBS_URL "https://dev-libs.wireshark.org/windows/packages")
232         file(TO_CMAKE_PATH ${EXTRA_INSTALLER_DIR} _file_download_dir)
233
234         # Download Npcap required by the Windows installer
235         set(NPCAP_VERSION "1.75")
236         set(NPCAP_SHA256 "9ac38dff01b48e18033e8a9015b27042ef847c8c84a9065961a30f8ae22d5245")
237         set(NPCAP_FILENAME "npcap-${NPCAP_VERSION}.exe")
238         set(NPCAP_URL "${LIBS_URL}/Npcap/${NPCAP_FILENAME}")
239         FetchContent_Declare(Npcap
240                 URL ${NPCAP_URL}
241                 DOWNLOAD_DIR ${_file_download_dir}
242                 URL_HASH SHA256=${NPCAP_SHA256}
243                 DOWNLOAD_NO_EXTRACT True
244         )
245
246         # Download USBPcap required by the Windows installer
247         set(USBPCAP_VERSION "1.5.4.0")
248         set(USBPCAP_SHA256 "87a7edf9bbbcf07b5f4373d9a192a6770d2ff3add7aa1e276e82e38582ccb622")
249         set(USBPCAP_FILENAME "USBPcapSetup-${USBPCAP_VERSION}.exe")
250         set(USBPCAP_URL "${LIBS_URL}/USBPcap/${USBPCAP_FILENAME}")
251         FetchContent_Declare(USBPcap
252                 URL ${USBPCAP_URL}
253                 DOWNLOAD_DIR ${_file_download_dir}
254                 URL_HASH SHA256=${USBPCAP_SHA256}
255                 DOWNLOAD_NO_EXTRACT True
256         )
257 endif(WIN32)
258
259 include(UseCustomIncludes)
260 ADD_CUSTOM_CMAKE_INCLUDE()
261
262 # Ensure that all executables and libraries end up in the same directory. Actual
263 # files might end up in a configuration subdirectory, e.g. run/Debug or
264 # run/Release. We try to set DATAFILE_DIR to actual location below.
265 if(NOT ARCHIVE_OUTPUT_PATH)
266         set(ARCHIVE_OUTPUT_PATH ${CMAKE_BINARY_DIR}/run CACHE INTERNAL
267                    "Single output directory for building all archives.")
268 endif()
269 if(NOT EXECUTABLE_OUTPUT_PATH)
270         set(EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR}/run CACHE INTERNAL
271                    "Single output directory for building all executables.")
272 endif()
273 if(NOT LIBRARY_OUTPUT_PATH)
274         set(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}/run CACHE INTERNAL
275                    "Single output directory for building all libraries.")
276 endif()
277
278 #
279 # The release mode (CMAKE_BUILD_TYPE=release) defines NDEBUG for
280 # the Unix Makefile generator.
281 #
282
283 # Defines CMAKE_INSTALL_BINDIR, CMAKE_INSTALL_DATADIR, etc ...
284 if(WIN32 AND NOT USE_MSYSTEM)
285         # Override some values on Windows, to match the existing
286         # convention of installing everything to a single root folder.
287         set(CMAKE_INSTALL_BINDIR ".")
288         set(CMAKE_INSTALL_LIBDIR ".")
289         set(CMAKE_INSTALL_INCLUDEDIR "include")
290         set(CMAKE_INSTALL_DATADIR ".")
291         set(CMAKE_INSTALL_DOCDIR ".")
292 else()
293         # By default INSTALL_DATADIR is set to INSTALL_DATAROOTDIR, set the
294         # proper value here.
295         set(CMAKE_INSTALL_DATADIR "share/${PROJECT_NAME}"
296                 CACHE PATH "Read-only architecture-independent data"
297         )
298 endif()
299 include(GNUInstallDirs)
300
301 set(PROJECT_INSTALL_INCLUDEDIR "${CMAKE_INSTALL_INCLUDEDIR}/${PROJECT_NAME}")
302
303 # Make sure our executables can load our libraries if we install into
304 # a non-default directory on Unix-like systems other than macOS.
305 # https://gitlab.kitware.com/cmake/community/wikis/doc/cmake/RPATH-handling
306 set(LIBRARY_INSTALL_RPATH "")
307 set(EXECUTABLE_INSTALL_RPATH "")
308 set(EXTCAP_INSTALL_RPATH "")
309 if(NOT (WIN32 OR APPLE OR USE_STATIC))
310         # Try to set a RPATH for installed binaries if the library directory is
311         # not already included in the default search list.
312         list(FIND CMAKE_C_IMPLICIT_LINK_DIRECTORIES "${CMAKE_INSTALL_FULL_LIBDIR}" IS_SYSTEM_DIR)
313         if(IS_SYSTEM_DIR EQUAL -1)
314                 # Some systems support $ORIGIN in RPATH to enable relocatable
315                 # binaries. In other cases, only absolute paths can be used.
316                 # https://www.lekensteyn.nl/rpath.html
317                 #
318                 # Also note that some systems (notably those using GNU libc)
319                 # silently ignore $ORIGIN in RPATH for binaries that are
320                 # setuid root or use privileged capabilities.
321                 #
322                 if(CMAKE_SYSTEM_NAME MATCHES "^(Linux|SunOS|FreeBSD)$")
323                         set(_enable_rpath_origin TRUE)
324                 else()
325                         set(_enable_rpath_origin FALSE)
326                 endif()
327
328                 # Provide a knob to optionally force absolute rpaths,
329                 # to support old/buggy systems and as a user preference
330                 # for hardening.
331                 # XXX Should this be a CMake option?
332                 set(ENABLE_RPATH_ORIGIN ${_enable_rpath_origin} CACHE BOOL
333                         "Use $ORIGIN with INSTALL_RPATH")
334                 mark_as_advanced(ENABLE_RPATH_ORIGIN)
335
336                 if(ENABLE_RPATH_ORIGIN)
337                         set(LIBRARY_INSTALL_RPATH     "$ORIGIN")
338                         set(EXECUTABLE_INSTALL_RPATH  "$ORIGIN/../${CMAKE_INSTALL_LIBDIR}")
339                         set(EXTCAP_INSTALL_RPATH      "$ORIGIN/../..")
340                 else()
341                         set(LIBRARY_INSTALL_RPATH     "${CMAKE_INSTALL_FULL_LIBDIR}")
342                         set(EXECUTABLE_INSTALL_RPATH  "${CMAKE_INSTALL_FULL_LIBDIR}")
343                         set(EXTCAP_INSTALL_RPATH      "${CMAKE_INSTALL_FULL_LIBDIR}")
344                 endif()
345                 # Include non-standard external libraries by default in RPATH.
346                 if(NOT DEFINED CMAKE_INSTALL_RPATH_USE_LINK_PATH)
347                         set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
348                 endif()
349         endif()
350 endif()
351
352 # Ensure that executables in the build directory always have the same RPATH.
353 # This ensures relocatable binaries and reproducible builds (invariant of the
354 # build directory location). (Requires CMake 3.14)
355 set(CMAKE_BUILD_RPATH_USE_ORIGIN ON)
356
357 if(MSVC)
358     # Linking with wsetargv.obj enables "wildcard expansion" of
359     # command-line arguments.
360     set(WILDCARD_OBJ wsetargv.obj)
361 endif()
362
363 include(CheckSymbolExists)
364
365 #
366 # Large file support on UN*X, a/k/a LFS.
367 #
368 # On Windows, we require _fseeki64() and _ftelli64().  Visual
369 # Studio has had supported them since Visual Studio 2005/MSVCR80,
370 # and we require newer versions, so we know we have them.
371 #
372 if(NOT MSVC)
373         include(FindLFS)
374         if(LFS_FOUND)
375                 #
376                 # Add the required #defines.
377                 #
378                 add_definitions(${LFS_DEFINITIONS})
379         endif()
380
381         #
382         # Check for fseeko as well.
383         #
384         include(FindFseeko)
385         if(FSEEKO_FOUND)
386                 set(HAVE_FSEEKO ON)
387
388                 #
389                 # Add the required #defines.
390                 #
391                 add_definitions(${FSEEKO_DEFINITIONS})
392         endif()
393 endif()
394
395 # Banner shown at top right of Qt welcome screen.
396 if(DEFINED ENV{WIRESHARK_VERSION_FLAVOR})
397         set(VERSION_FLAVOR "$ENV{WIRESHARK_VERSION_FLAVOR}")
398 else()
399         set(VERSION_FLAVOR "Development Build")
400 endif()
401
402 # Used in .rc files and manifests
403 set(MANIFEST_PROCESSOR_ARCHITECTURE ${WIRESHARK_TARGET_PLATFORM})
404 if (MANIFEST_PROCESSOR_ARCHITECTURE MATCHES "x64")
405         set(MANIFEST_PROCESSOR_ARCHITECTURE "amd64")
406 endif()
407 set(RC_VERSION ${PROJECT_MAJOR_VERSION},${PROJECT_MINOR_VERSION},${PROJECT_PATCH_VERSION},${PROJECT_BUILD_VERSION})
408 set(LOG_RC_VERSION ${LOG_PROJECT_MAJOR_VERSION},${LOG_PROJECT_MINOR_VERSION},${PROJECT_PATCH_VERSION},${PROJECT_BUILD_VERSION})
409
410 message(STATUS "V: ${PROJECT_VERSION}, MaV: ${PROJECT_MAJOR_VERSION}, MiV: ${PROJECT_MINOR_VERSION}, PL: ${PROJECT_PATCH_VERSION}, EV: ${PROJECT_VERSION_EXTENSION}.")
411
412 include(UseLemon)
413 include(UseMakePluginReg)
414 include(UseMakeTaps)
415 include(UseExecutableResources)
416 include(UseAsn2Wrs)
417
418 # The following snippet has been taken from
419 # https://github.com/USESystemEngineeringBV/cmake-eclipse-helper/wiki/HowToWorkaroundIndexer
420 # The eclipse indexer otherwise assumes __cplusplus=199711L which will lead to broken
421 # lookup tables for the epan libraries
422 # Check if CXX flags have been set to c++11 -> Setup Eclipse Indexer correctly!
423 # Also setup the project slightly different
424 if(CMAKE_EXTRA_GENERATOR MATCHES "Eclipse CDT4")
425         SET(CXX_ENABLED 0)
426         LIST(LENGTH CMAKE_EXTRA_GENERATOR_CXX_SYSTEM_DEFINED_MACROS LIST_LEN)
427         if(LIST_LEN GREATER 0)
428                 SET(CXX_ENABLED 1)
429         endif()
430         SET(C_ENABLED 0)
431         LIST(LENGTH CMAKE_EXTRA_GENERATOR_C_SYSTEM_DEFINED_MACROS LIST_LEN)
432         if(LIST_LEN GREATER 0)
433                 SET(C_ENABLED 1)
434         endif()
435         if(C_ENABLED EQUAL 1 AND CXX_ENABLED EQUAL 1)
436                 # Combined project (C and CXX). This will confuse the indexer. For that reason
437                 # we unsert set the __cplusplus variable for the indexer
438                 list(FIND CMAKE_EXTRA_GENERATOR_CXX_SYSTEM_DEFINED_MACROS "__cplusplus" GEN_MACRO_INDEX)
439                 if(GEN_MACRO_INDEX GREATER -1)
440                         list(REMOVE_AT CMAKE_EXTRA_GENERATOR_CXX_SYSTEM_DEFINED_MACROS ${GEN_MACRO_INDEX})
441                         list(REMOVE_AT CMAKE_EXTRA_GENERATOR_CXX_SYSTEM_DEFINED_MACROS ${GEN_MACRO_INDEX})
442                 endif()
443                 SET(CMAKE_EXTRA_GENERATOR_CXX_SYSTEM_DEFINED_MACROS ${CMAKE_EXTRA_GENERATOR_CXX_SYSTEM_DEFINED_MACROS} CACHE INTERNAL "")
444         elseif((CXX_ENABLED EQUAL 1) AND (CMAKE_CXX_FLAGS MATCHES ".*-std=c\\+\\+11.*"))
445                 #add_definitions (-D__cplusplus=201103L)
446                 # CMAKE_EXTRA_GENERATOR_CXX_SYSTEM_DEFINED_MACROS
447                 list(FIND CMAKE_EXTRA_GENERATOR_CXX_SYSTEM_DEFINED_MACROS "199711L" GEN_MACRO_INDEX)
448                 if(GEN_MACRO_INDEX GREATER -1)
449                         list(REMOVE_AT CMAKE_EXTRA_GENERATOR_CXX_SYSTEM_DEFINED_MACROS ${GEN_MACRO_INDEX})
450                         list(INSERT CMAKE_EXTRA_GENERATOR_CXX_SYSTEM_DEFINED_MACROS ${GEN_MACRO_INDEX} "201103L")
451                         SET(CMAKE_EXTRA_GENERATOR_CXX_SYSTEM_DEFINED_MACROS ${CMAKE_EXTRA_GENERATOR_CXX_SYSTEM_DEFINED_MACROS} CACHE INTERNAL "")
452                 endif()
453         endif()
454 endif()
455
456 include_directories(
457         ${CMAKE_BINARY_DIR}
458         ${CMAKE_SOURCE_DIR}
459         ${CMAKE_SOURCE_DIR}/include
460 )
461
462 if( DUMPCAP_INSTALL_OPTION STREQUAL "suid" )
463         set( DUMPCAP_SETUID "SETUID" )
464 else()
465         set( DUMPCAP_SETUID )
466 endif()
467 if( NOT CMAKE_SYSTEM_NAME STREQUAL "Linux" AND
468         DUMPCAP_INSTALL_OPTION STREQUAL "capabilities" )
469         message( WARNING "Capabilities are only supported on Linux" )
470         set( DUMPCAP_INSTALL_OPTION )
471 endif()
472
473 set(OSS_FUZZ OFF CACHE BOOL "Whether building for oss-fuzz")
474 mark_as_advanced(OSS_FUZZ)
475 if(OSS_FUZZ)
476         if(ENABLE_FUZZER)
477                 # In oss-fuzz mode, the fuzzing engine can be afl or libFuzzer.
478                 message(FATAL_ERROR "Cannot force libFuzzer when using oss-fuzz")
479         endif()
480         # Must not depend on external dependencies so statically link all libs.
481         set(USE_STATIC ON)
482 endif()
483
484 if(USE_STATIC)
485         set(CMAKE_FIND_LIBRARY_SUFFIXES ".a")
486 endif()
487
488 #
489 # Linking can consume a lot of memory, especially when built with ASAN and
490 # static libraries (like oss-fuzz) or Debug mode. With Ninja, the number of
491 # parallel linker processes is constrained by job parallelism (-j), but this can
492 # be reduced further by setting "job pools" to a lower number.
493 #
494 if(CMAKE_MAKE_PROGRAM MATCHES "ninja" AND OSS_FUZZ)
495         # Assume oss-fuzz linker jobs do not require more than 1.2G per task
496         set(per_job_memory_mb 1200)
497         cmake_host_system_information(RESULT total_memory_mb QUERY TOTAL_PHYSICAL_MEMORY)
498         math(EXPR parallel_link_jobs "${total_memory_mb} / ${per_job_memory_mb}")
499         if(parallel_link_jobs LESS 1)
500                 set(parallel_link_jobs 1)
501         endif()
502         set_property(GLOBAL APPEND PROPERTY JOB_POOLS link_job_pool=${parallel_link_jobs})
503         set(CMAKE_JOB_POOL_LINK link_job_pool)
504         message(STATUS "Ninja job pool size: ${parallel_link_jobs}")
505 endif()
506
507 # Always enable position-independent code when compiling, even for
508 # executables, so you can build position-independent executables.
509 # -pie is added below for non-MSVC, but requires objects to be built with
510 # -fPIC/-fPIE (so set CMAKE_POSITION_INDEPENDENT_CODE to enable that).
511 set(CMAKE_POSITION_INDEPENDENT_CODE ON)
512
513 # Preprocessor definitions common to all compilers
514 set_property(DIRECTORY
515         PROPERTY COMPILE_DEFINITIONS
516                 "G_DISABLE_DEPRECATED"
517                 "G_DISABLE_SINGLE_INCLUDES"
518                 $<$<OR:$<BOOL:${ENABLE_DEBUG}>,$<CONFIG:Debug>,$<CONFIG:RelWithDebInfo>>:WS_DEBUG>
519                 $<$<OR:$<BOOL:${ENABLE_DEBUG_UTF_8}>,$<CONFIG:Debug>,$<CONFIG:RelWithDebInfo>>:WS_DEBUG_UTF_8>
520 )
521
522 if(WIN32)
523         #
524         # NOTE: Because of the way Qt moc is including "config.h" (not as the
525         # first header) this *MUST* be defined on the command line to precede
526         # every included header and not trigger symbol redefinition errors.
527         #
528         add_definitions(
529                 -DWIN32_LEAN_AND_MEAN
530                 #
531                 # Use Unicode in Windows runtime functions.
532                 #
533                 -DUNICODE
534                 -D_UNICODE
535                 #
536                 # NOMINMAX keeps windows.h from defining "min" and "max" via windef.h.
537                 # This avoids conflicts with the C++ standard library.
538                 #
539                 -DNOMINMAX
540         )
541 endif()
542
543 if(MINGW)
544         add_definitions(
545                 #
546                 # Enable POSIX APIs. This will switch stdio to ANSI C functions and
547                 # enable C99 conformant vsnprintf() among other things.
548                 #
549                 -D_POSIX
550         )
551         list(APPEND CMAKE_REQUIRED_DEFINITIONS -D_POSIX)
552 endif()
553
554 if( CMAKE_C_COMPILER_ID MATCHES "MSVC")
555         if (MSVC_VERSION LESS "1928")
556                 message(FATAL_ERROR "Microsoft Visual Studio 2019 version 16.8 or later is required")
557         endif()
558         if (MSVC_VERSION GREATER_EQUAL "2000")
559                 message(FATAL_ERROR "You are using an unsupported version of MSVC")
560         endif()
561
562         add_definitions(
563                 /D_CRT_SECURE_NO_DEPRECATE
564                 # -DPSAPI_VERSION=1                 Programs that must run on earlier versions of Windows as well as Windows 7 and later
565                 #                                   versions should always call this function as GetProcessMemoryInfo. To ensure correct
566                 #                                   resolution of symbols, add Psapi.lib to the TARGETLIBS macro and compile the program
567                 #                                   with -DPSAPI_VERSION=1.To use run-time dynamic linking, load Psapi.dll.
568                 #                                   https://docs.microsoft.com/en-us/windows/win32/api/psapi/nf-psapi-getprocessmemoryinfo
569                 # -D_ALLOW_KEYWORD_MACROS           For VS2012 onwards the, C++ STL does not permit macro redefinitions of keywords
570                 #                                   (see https://docs.microsoft.com/en-us/previous-versions/visualstudio/visual-studio-2012/bb531344(v=vs.110))
571                 #                                   This definition prevents the complaint about the redefinition of inline by WinPCap
572                 #                                   in pcap-stdinc.h when compiling C++ files, e.g. the Qt UI
573                 /DPSAPI_VERSION=1
574                 /D_ALLOW_KEYWORD_MACROS
575                 # Disable deprecation of POSIX function names.
576                 # https://stackoverflow.com/questions/37845163/what-is-the-purpose-of-microsofts-underscore-c-functions
577                 /D_CRT_NONSTDC_NO_WARNINGS
578         )
579
580         if(NOT WIRESHARK_TARGET_PLATFORM STREQUAL "x64")
581                 add_definitions("/D_BIND_TO_CURRENT_CRT_VERSION=1")
582         endif()
583
584         set(LOCAL_CFLAGS
585                 /MP
586         )
587
588         set(WS_LINK_FLAGS "/LARGEADDRESSAWARE /MANIFEST:NO /INCREMENTAL:NO /RELEASE")
589
590         # To do: Add /external:... See https://devblogs.microsoft.com/cppblog/broken-warnings-theory/
591         #
592         # /diagnostics:caret                Place a caret under compilation issues similar to
593         #                                   Clang and gcc.
594         # /Zo                               Enhanced debugging of optimised code
595         # /utf-8                            Set Source and Executable character sets to UTF-8
596         #                                   VS2015(MSVC14): On by default when /Zi or /Z7 used.
597         # /guard:cf                         Control Flow Guard (compile and link).
598         #                                   See https://docs.microsoft.com/en-us/windows/win32/secbp/control-flow-guard
599         #                                   Note: This requires CMake 3.9.0 or newer.
600         #                                   https://gitlab.kitware.com/cmake/cmake/commit/f973d49ab9d4c59b93f6dac812a94bb130200836
601         # /Qspectre                         Speculative execution attack mitigation
602         #                                   See https://devblogs.microsoft.com/cppblog/spectre-mitigations-in-msvc/
603         list(APPEND LOCAL_CFLAGS /diagnostics:caret /Zo /utf-8 /guard:cf)
604         set(WS_LINK_FLAGS "${WS_LINK_FLAGS} /guard:cf")
605         set(WS_LINK_FLAGS "${WS_LINK_FLAGS} /STACK:0x800000")
606         # /Qspectre is not available for VS2015 or older VS2017. Test for its availability.
607         set(WIRESHARK_COMMON_FLAGS /Qspectre)
608
609         if(ENABLE_CODE_ANALYSIS)
610                 # We should probably add a code_analysis.props file and use it to set
611                 # CAExcludePath, otherwise we trigger on Qt's headers:
612                 # https://stackoverflow.com/questions/59669026/how-to-add-property-to-affect-code-analysis-in-cmake
613                 # https://gitlab.kitware.com/cmake/cmake/-/issues/19682
614                 # For now, we set CAExcludePath=C:\Qt;%include% in the Visual Studio
615                 # Code Analys builder's environment.
616                 list(APPEND LOCAL_CFLAGS
617                         /analyze:WX-
618                         /analyze:log:format:sarif
619                         )
620         endif()
621
622         # Additional compiler warnings to be treated as "Level 3"
623         # when compiling Wireshark sources. (Selected from "level 4" warnings).
624         ## 4295: array is too small to include a terminating null character
625         ## 4100: unreferenced formal parameter
626         ## 4189: local variable is initialized but not referenced
627         # Disable warnings about use of flexible array members:
628         ## 4200: nonstandard extension used : zero-sized array in struct/union
629         list(APPEND LOCAL_CFLAGS /w34295 /w34100 /w34189 /wd4200)
630
631         # MSVC 14.28 + C11 enables C5105, but older Windows SDKs aren't completely compatible.
632         # Windows SDK 10.0.17763.0 generates syntax errors with C11 enabled.
633         # The variable CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION does not work with the Ninja generator. Presumably it requires a VS generator.
634         if (CMAKE_GENERATOR MATCHES "Visual Studio")
635                 if (CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION VERSION_LESS 10.0.18362.0)
636                         message(FATAL_ERROR "Windows SDK ${CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION} doesn't support C11. Please make sure you're using 10.0.20348.0 or later.")
637                 endif()
638                 # Windows SDK 10.0.18362.0 to 10.0.19041.685 generate warning C5105 with C11 enabled.
639                 if(CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION VERSION_LESS 10.0.20348.0)
640                         message(WARNING "Windows SDK ${CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION} doesn't support C11. Please make sure you're using 10.0.20348.0 or later.")
641                         ## 5105: macro expansion producing 'defined' has undefined behavior
642                         list(APPEND LOCAL_CFLAGS /wd5105)
643                 endif()
644         endif()
645
646         # We've matched these to specific compiler versions using the
647         # checks above. There's no need to pass them to check_c_compiler_flag
648         # or check_cxx_compiler_flag, which can be slow.
649         string(REPLACE ";" " " _flags "${LOCAL_CFLAGS}")
650         set(CMAKE_C_FLAGS "${_flags} ${CMAKE_C_FLAGS}")
651         set(CMAKE_CXX_FLAGS "${_flags} ${CMAKE_CXX_FLAGS}")
652
653 else() # ! MSVC
654         if(APPLE)
655                 # MIN_MACOS_VERSION is used to set LSMinimumSystemVersion
656                 # in Info.plist, so start with something low.
657                 set(MIN_MACOS_VERSION 10.10)
658                 if(CMAKE_OSX_DEPLOYMENT_TARGET)
659                         if(CMAKE_OSX_DEPLOYMENT_TARGET VERSION_LESS MIN_MACOS_VERSION)
660                                 message(FATAL_ERROR "We don't support building for macOS < ${MIN_MACOS_VERSION}")
661                         endif()
662                         set(MIN_MACOS_VERSION ${CMAKE_OSX_DEPLOYMENT_TARGET})
663                 endif()
664         endif()
665
666         #
667         # NOTE: Adding new warnings is a policy decision that can have far-reaching
668         # implications for the project and each developers workflow. Modern
669         # C compilers are on a race to add new warnings, not always sensibly.
670         # They are opt-in so take a moment to fully consider the implications
671         # of enabling the latest shiny new warning.
672         # If in doubt ask on the Wireshark developer list (recommended).
673         #
674         list(APPEND WIRESHARK_COMMON_FLAGS
675                 #
676                 ### Flags common to C and C++ ###
677                 #
678                 # -O<X> and -g get set by the CMAKE_BUILD_TYPE
679                 -Wall
680                 -Wextra
681                 -Wpointer-arith
682                 -Wformat-security
683                 -fno-strict-overflow
684                 -fexcess-precision=fast # GCC-only
685                 -Wvla
686                 -Wattributes
687                 -Wpragmas               # Clang-only
688                 -Wheader-guard          # Clang-only
689                 -Wcomma                 # Clang-only
690                 -Wshorten-64-to-32      # Clang-only
691                 -Wredundant-decls
692                 -Wunreachable-code      # Clang-only
693                 -Wdocumentation         # Clang-only
694                 -Wlogical-op            # GCC-only
695                 #
696                 # Disable errors unconditionally for some static analysis warnings
697                 # that are dormant at lower optimizations levels or active only in
698                 # bleeding edge versions of a compiler and possibly also
699                 # prone to false positives and compiler bugs. This is
700                 # a big nuisance because the warning is dormant and a low
701                 # priority target for action. That is very disruptive
702                 # with -Werror enabled (the default on the master branch).
703                 #
704                 -Wno-error=stringop-overflow=
705                 #
706                 # XXX Now that we have a CI job with Release build type (using
707                 # -O3 optimization level) the dormancy issue should be ameliorated
708                 # so comment out these exceptions to re-evaluate the impact.
709                 #-Wno-error=maybe-uninitialized
710                 #-Wno-error=alloc-size-larger-than=
711                 #
712                 # Updating external dependencies can introduce new deprecations.
713                 # Also fixing new internal deprecations takes time.
714                 # We want to be able to build with -Werror in that case. New
715                 # code should not introduce new deprecations in any case.
716                 #
717                 -Wno-error=deprecated-declarations
718         )
719
720         if((NOT ENABLE_ASAN) AND (NOT ENABLE_TSAN) AND (NOT ENABLE_UBSAN) AND (NOT DISABLE_FRAME_LARGER_THAN_WARNING))
721                 #
722                 # Only do this if none of ASan, TSan, and UBSan are
723                 # enabled; the instrumentation they add increases
724                 # the stack usage - we only care about stack
725                 # usage in normal operation.
726                 #
727                 list(APPEND WIRESHARK_COMMON_FLAGS
728                         -Wframe-larger-than=32768
729                 )
730         endif()
731
732         list(APPEND WIRESHARK_C_ONLY_FLAGS
733                 #
734                 ### Flags for C only ###
735                 #
736                 #
737                 # XXX - some versions of GCC, including the one in at
738                 # least some Xcode versions that come with Mac OS X
739                 # 10.5, complain about variables in function and
740                 # function pointer *declarations* shadowing other
741                 # variables.  The autoconf script checked for that; we
742                 # don't.
743                 -Wshadow
744                 -Wold-style-definition
745                 -Wstrict-prototypes
746         )
747
748         #
749         # The universal zero initializer (in C: struct s x = { 0 };) for
750         # structures with multiple members is perfectly legal, but some older
751         # compilers warn about it. Silence those older compilers.
752         #
753         if((CMAKE_C_COMPILER_ID STREQUAL "GNU" AND CMAKE_C_COMPILER_VERSION VERSION_LESS "5.1") OR
754            (CMAKE_C_COMPILER_ID STREQUAL "Clang" AND CMAKE_C_COMPILER_VERSION VERSION_LESS "6.0") OR
755            (CMAKE_C_COMPILER_ID STREQUAL "AppleClang" AND CMAKE_C_COMPILER_VERSION VERSION_LESS "12.0"))
756                 if(NOT CMAKE_C_COMPILER_ID STREQUAL "GNU" OR CMAKE_C_COMPILER_VERSION VERSION_LESS "5.0")
757                         list(APPEND WIRESHARK_C_ONLY_FLAGS -Wno-missing-field-initializers)
758                 endif()
759                 # Silence warnings for initialization of nested structs like
760                 # struct { struct { int a, b; } s; int c; } v = { 0 };
761                 list(APPEND WIRESHARK_C_ONLY_FLAGS -Wno-missing-braces)
762         endif()
763
764         list(APPEND WIRESHARK_CXX_ONLY_FLAGS
765                 #
766                 ### Flags for C++ only ###
767                 #
768                 -Wextra-semi    # Clang-only
769         )
770
771         #
772         # Not all warnings are the same. They fall on a spectrum from "critical"
773         # to "pedantic nonsense". These are warnings that realistically are worth
774         # fixing eventually.
775         #
776         if(ENABLE_TODO_WARNINGS)
777                 list(APPEND WIRESHARK_COMMON_FLAGS
778                         #
779                         # All the registration functions block these for now.
780                         #
781                         -Wmissing-prototypes
782                         -Wmissing-declarations
783                         #
784                         # A bunch of "that might not work on SPARC" code blocks
785                         # this one for now; some of it is code that *will* work
786                         # on SPARC, such as casts of "struct sockaddr *" to
787                         # "struct sockaddr_in *", which are required by some
788                         # APIs such as getifaddrs().
789                         #
790                         -Wcast-align
791                 )
792         else()
793                 list(APPEND WIRESHARK_COMMON_FLAGS
794                         #
795                         # Converting from g_printf() and g_snprintf() to stdio.h turns
796                         # up many of these warnings. They will have to be handled later.
797                         # It can be a lot of work to fix properly and none of them
798                         # seem to flag very interesting issues.
799                         #
800                         -Wno-format-truncation # Enabled with -Wall
801                 )
802                 list(APPEND WIRESHARK_C_ONLY_FLAGS
803                         -Wno-pointer-sign # Enabled with -Wall
804                 )
805         endif()
806
807         #
808         # These are not enabled by default, because the warnings they
809         # produce are very hard or impossible to eliminate.
810         #
811         if(ENABLE_PEDANTIC_COMPILER_WARNINGS)
812                 list(APPEND WIRESHARK_COMMON_FLAGS
813                         # The following are for C and C++
814                         -Wpedantic
815                         -Wno-overlength-strings
816                         -Wno-long-long
817                         #
818                         # As we use variadic macros, we don't want warnings
819                         # about them, even with -Wpedantic.
820                         #
821                         -Wno-variadic-macros
822                         #
823                         # Various code blocks this one.
824                         #
825                         -Woverflow
826                         -fstrict-overflow -Wstrict-overflow=4
827                         #
828                         # Due to various places where APIs we don't control
829                         # require us to cast away constness, we can probably
830                         # never enable this one with -Werror.
831                         #
832                         -Wcast-qual
833                         #
834                         # Doesn't warn of interesting issues. Usually the
835                         # duplicated branches are protocol constants that
836                         # happen to be equal and are relevant for documentation
837                         # and readability and are trivially optimized by the
838                         # compiler.
839                         #
840                         -Wduplicated-branches           # GCC-only
841                         #
842                         # No longer supported by El Capitan clang on C++
843                         # XXX - is this one of those where CMake's check
844                         # doesn't fail, so it won't reject this?
845                         #
846                         -fno-delete-null-pointer-checks
847                 )
848
849                 #
850                 # Some loops are safe, but it's hard to convince the compiler of
851                 # that. Always disable the warning on GCC 7 due to a bug that
852                 # cause lots of false positives.
853                 # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81408
854                 #
855                 if(CMAKE_C_COMPILER_ID STREQUAL "GNU" AND NOT CMAKE_C_COMPILER_VERSION MATCHES "^7\\.")
856                         list(APPEND WIRESHARK_COMMON_FLAGS -Wunsafe-loop-optimizations)
857                 endif()
858
859                 list(APPEND WIRESHARK_C_ONLY_FLAGS
860                         # The following are C only, not C++
861                         #
862                         # Due to various places where APIs we don't control
863                         # require us to cast away constness, we can probably
864                         # never enable this one with -Werror.
865                         #
866                         -Wbad-function-cast
867                 )
868
869                 list(APPEND WIRESHARK_CXX_ONLY_FLAGS
870                 )
871         endif()
872
873         if(ENABLE_COMPILER_COLOR_DIAGNOSTICS)
874                 if(CMAKE_C_COMPILER_ID MATCHES "Clang")
875                         set(WIRESHARK_COMMON_FLAGS ${WIRESHARK_COMMON_FLAGS}
876                                 -fcolor-diagnostics
877                         )
878                 elseif(CMAKE_C_COMPILER_ID MATCHES "GNU")
879                         set(WIRESHARK_COMMON_FLAGS ${WIRESHARK_COMMON_FLAGS}
880                                 -fdiagnostics-color=always
881                         )
882                 endif()
883         endif()
884
885         set(WIRESHARK_LD_FLAGS
886                 # See also CheckCLinkerFlag.cmake
887                 -Wl,--as-needed
888                 # -flto
889                 # -fwhopr
890                 # -fwhole-program
891         )
892 endif() # ! MSVC
893
894 # Counterhack to work around some cache magic in CHECK_C_SOURCE_COMPILES
895 include(CheckCCompilerFlag)
896 include(CheckCXXCompilerFlag)
897
898 if(ENABLE_STATIC)
899         set(BUILD_SHARED_LIBS 0)
900 else()
901         set(BUILD_SHARED_LIBS 1)
902 endif()
903
904 function(test_compiler_flag _lang _this_flag _valid_flags_var)
905         string(MAKE_C_IDENTIFIER "${_lang}${_this_flag}_VALID" _flag_var)
906         set(_test_flags "${${_valid_flags_var}} ${_this_flag}")
907         if(_lang STREQUAL "C")
908                 check_c_compiler_flag("${_test_flags}" ${_flag_var})
909         elseif(_lang STREQUAL "CXX")
910                 check_cxx_compiler_flag("${_test_flags}" ${_flag_var})
911         else()
912                 message(FATAL_ERROR "Language must be C or CXX")
913         endif()
914         if (${_flag_var})
915                 set(${_valid_flags_var} "${_test_flags}" PARENT_SCOPE)
916         endif()
917 endfunction()
918
919 foreach(THIS_FLAG ${WIRESHARK_COMMON_FLAGS} ${WIRESHARK_C_ONLY_FLAGS})
920         test_compiler_flag(C ${THIS_FLAG} ADDED_CMAKE_C_FLAGS)
921 endforeach()
922 set(CMAKE_C_FLAGS "${ADDED_CMAKE_C_FLAGS} ${CMAKE_C_FLAGS}")
923
924 foreach(THIS_FLAG ${WIRESHARK_COMMON_FLAGS} ${WIRESHARK_CXX_ONLY_FLAGS})
925         test_compiler_flag(CXX ${THIS_FLAG} ADDED_CMAKE_CXX_FLAGS)
926 endforeach()
927 set(CMAKE_CXX_FLAGS "${ADDED_CMAKE_CXX_FLAGS} ${CMAKE_CXX_FLAGS}")
928
929 # Strips the source and build directory prefix from the __FILE__ macro to ensure
930 # reproducible builds. Supported since GCC 8, Clang support is pending.
931 if(CMAKE_C_COMPILER_ID MATCHES "GNU" OR CMAKE_C_COMPILER_ID MATCHES "Clang")
932         # If the build dir is within the source dir, CMake will use something
933         # like ../epan/dfilter/semcheck.c. Map these relative paths in addition
934         # to CMAKE_BINARY_DIR since compile_commands.json uses absolute paths.
935         file(RELATIVE_PATH _relative_source_dir "${CMAKE_BINARY_DIR}" "${CMAKE_SOURCE_DIR}")
936         string(REGEX REPLACE "/$" "" _relative_source_dir "${_relative_source_dir}")
937
938         check_c_compiler_flag(-fmacro-prefix-map=old=new C_fmacro_prefix_map_old_new_VALID)
939         check_cxx_compiler_flag(-fmacro-prefix-map=old=new CXX_fmacro_prefix_map_old_new_VALID)
940         foreach(_lang C CXX)
941                 if(${_lang}_fmacro_prefix_map_old_new_VALID)
942                         set(_flags CMAKE_${_lang}_FLAGS)
943                         set(${_flags} "${${_flags}} -fmacro-prefix-map=${CMAKE_SOURCE_DIR}/=")
944                         set(${_flags} "${${_flags}} -fmacro-prefix-map=${CMAKE_BINARY_DIR}/=")
945                         if(_relative_source_dir MATCHES "\\.\\.$")
946                                 set(${_flags} "${${_flags}} -fmacro-prefix-map=${_relative_source_dir}/=")
947                         endif()
948                 endif()
949         endforeach()
950 endif()
951
952 include(CMakePushCheckState)
953
954 if(ENABLE_ASAN)
955         # Available since MSVC 2019 version 16.9
956         cmake_push_check_state()
957         set(ASAN_FLAG "-fsanitize=address")
958         set(CMAKE_REQUIRED_FLAGS ${ASAN_FLAG})
959         check_c_compiler_flag(${ASAN_FLAG} C__fsanitize_address_VALID)
960         check_cxx_compiler_flag(${ASAN_FLAG} CXX__fsanitize_address_VALID)
961         cmake_pop_check_state()
962         if(NOT C__fsanitize_address_VALID OR NOT CXX__fsanitize_address_VALID)
963                 message(FATAL_ERROR "ENABLE_ASAN was requested, but not supported!")
964         endif()
965         add_compile_options(${ASAN_FLAG})
966         if (MSVC)
967                 # Using ASAN makes some of our code require object files with
968                 # a 32-bit index to the section table instead of 16-bit.
969                 # This makes the .obj files slightly larger (~2%) and makes
970                 # it so that Microsoft linkers prior to MSVC 2005 can't read
971                 # the files, but those are too old anyway.
972                 add_compile_options(/bigobj)
973                 # The Microsoft LINK linker doesn't recognize or need the
974                 # ASAN flag, and will give a LNK4044 warning.
975         else()
976                 # Clang/gcc need the flag added to the linker
977                 # add_link_options since CMake 3.13 (our minimum)
978                 add_link_options(${ASAN_FLAG})
979         endif()
980         # Disable ASAN for build-time tools, e.g. lemon
981         # (MSVC doesn't support this flag)
982         check_c_compiler_flag(-fno-sanitize=all C__fno_sanitize_all_VALID)
983         if(C__fno_sanitize_all_VALID)
984                 set(NO_SANITIZE_CFLAGS "-fno-sanitize=all")
985                 set(NO_SANITIZE_LDFLAGS "-fno-sanitize=all")
986         endif()
987 endif()
988
989 if(ENABLE_TSAN)
990         # Available since Clang >= 3.2 and GCC >= 4.8
991         cmake_push_check_state()
992         set(CMAKE_REQUIRED_LIBRARIES "-fsanitize=thread")
993         check_c_compiler_flag(-fsanitize=thread C__fsanitize_thread_VALID)
994         check_cxx_compiler_flag(-fsanitize=thread CXX__fsanitize_thread_VALID)
995         cmake_pop_check_state()
996         if(NOT C__fsanitize_thread_VALID OR NOT CXX__fsanitize_thread_VALID)
997                 message(FATAL_ERROR "ENABLE_TSAN was requested, but not supported!")
998         endif()
999         set(CMAKE_C_FLAGS "-fsanitize=thread ${CMAKE_C_FLAGS}")
1000         set(CMAKE_CXX_FLAGS "-fsanitize=thread ${CMAKE_CXX_FLAGS}")
1001         set(WS_LINK_FLAGS "-fsanitize=thread ${WS_LINK_FLAGS}")
1002 endif()
1003
1004 if(ENABLE_UBSAN)
1005         # Available since Clang >= 3.3 and GCC >= 4.9
1006         cmake_push_check_state()
1007         set(CMAKE_REQUIRED_LIBRARIES "-fsanitize=undefined")
1008         check_c_compiler_flag(-fsanitize=undefined C__fsanitize_undefined_VALID)
1009         check_cxx_compiler_flag(-fsanitize=undefined CXX__fsanitize_undefined_VALID)
1010         cmake_pop_check_state()
1011         if(NOT C__fsanitize_undefined_VALID OR NOT CXX__fsanitize_undefined_VALID)
1012                 message(FATAL_ERROR "ENABLE_UBSAN was requested, but not supported!")
1013         endif()
1014         set(CMAKE_C_FLAGS "-fsanitize=undefined ${CMAKE_C_FLAGS}")
1015         set(CMAKE_CXX_FLAGS "-fsanitize=undefined ${CMAKE_CXX_FLAGS}")
1016 endif()
1017
1018 if(ENABLE_FUZZER)
1019         # Available since Clang >= 6
1020         # Will enable coverage flags which can be used by the fuzzshark target.
1021         cmake_push_check_state()
1022         set(CMAKE_REQUIRED_LIBRARIES "-fsanitize=fuzzer-no-link")
1023         check_c_compiler_flag(-fsanitize=fuzzer C__fsanitize_fuzzer_no_link_VALID)
1024         check_cxx_compiler_flag(-fsanitize=fuzzer CXX__fsanitize_fuzzer_no_link_VALID)
1025         cmake_pop_check_state()
1026         if(NOT C__fsanitize_fuzzer_no_link_VALID OR NOT CXX__fsanitize_fuzzer_no_link_VALID)
1027                 message(FATAL_ERROR "ENABLE_FUZZER was requested, but not supported!")
1028         endif()
1029         set(CMAKE_C_FLAGS "-fsanitize=fuzzer-no-link ${CMAKE_C_FLAGS}")
1030         set(CMAKE_CXX_FLAGS "-fsanitize=fuzzer-no-link ${CMAKE_CXX_FLAGS}")
1031 endif()
1032
1033 if(MSVC)
1034         if(ENABLE_VLD)
1035                 include(FindVLD)
1036                 if(NOT VLD_FOUND)
1037                         message(FATAL_ERROR "ENABLE_VLD was requested, but not found!")
1038                 endif()
1039                 message(STATUS "Enabling Visual Leak Detector in Debug configuration")
1040                 set(WS_MSVC_DEBUG_LINK_FLAGS ${VLD_LINK_FLAGS})
1041         endif()
1042 endif()
1043
1044 set(WERROR_COMMON_FLAGS "")
1045 if(ENABLE_WERROR)
1046         if(CMAKE_C_COMPILER_ID MATCHES "MSVC")
1047                 set(WERROR_COMMON_FLAGS "/WX")
1048         else()
1049                 #
1050                 # If a warning has been enabled by -Wall or -W,
1051                 # and have specified -Werror, there appears to be
1052                 # no way, in Apple's llvm-gcc, to prevent that
1053                 # particular warning from giving an error - not
1054                 # with a pragma, not with -Wno-{warning}, and not
1055                 # with -Wno-error={warning}.
1056                 #
1057                 # Therefore, with that compiler, we just disable
1058                 # -Werror.
1059                 #
1060                 if ((NOT APPLE) OR CMAKE_C_COMPILER_ID MATCHES "Clang")
1061                         check_c_compiler_flag(-Werror WERROR)
1062                         if (WERROR)
1063                                 set(WERROR_COMMON_FLAGS "-Werror")
1064                         endif()
1065                 endif()
1066         endif()
1067 endif()
1068
1069 #
1070 # Try to have the compiler default to hiding symbols, so that only
1071 # symbols explicitly exported with WS_DLL_PUBLIC will be visible
1072 # outside (shared) libraries; that way, more UN*X builds will catch
1073 # failures to export symbols, rather than having that fail only on
1074 # Windows.
1075 #
1076 # We don't need that with MSVC, as that's the default.
1077 #
1078 if( NOT CMAKE_C_COMPILER_ID MATCHES "MSVC")
1079         #
1080         # Try the GCC-and-compatible -fvisibility-hidden first.
1081         #
1082         check_c_compiler_flag(-fvisibility=hidden FVHIDDEN)
1083         if(FVHIDDEN)
1084                 set(CMAKE_C_FLAGS "-fvisibility=hidden ${CMAKE_C_FLAGS}")
1085         else()
1086                 #
1087                 # OK, try the Sun^WOracle C -xldscope=hidden
1088                 #
1089                 check_c_compiler_flag(-xldscope=hidden XLDSCOPEHIDDEN)
1090                 if(XLDSCOPEHIDDEN)
1091                         set(CMAKE_C_FLAGS "-xldscope=hidden ${CMAKE_C_FLAGS}")
1092                 else()
1093                         #
1094                         # Anything else?
1095                         # If there is anything else, we might want to
1096                         # make a list of options to try, and try them
1097                         # in a loop.
1098                         #
1099                         message(WARNING "Hiding shared library symbols is not supported by the compiler."
1100                                 " All shared library symbols will be exported.")
1101                 endif()
1102         endif()
1103 endif()
1104
1105 include(CheckCLinkerFlag)
1106
1107 if(NOT CMAKE_C_COMPILER_ID MATCHES "MSVC" AND NOT OSS_FUZZ)
1108         #
1109         # The -pie linker option produces a position-independent executable.
1110         # Some Linux distributions have this enabled by default in the compiler,
1111         # so setting it here will be superfluous though.
1112         #
1113         # Note that linking with static libraries that are not position
1114         # independent may fail, the user can set CMAKE_EXE_LINKER_FLAGS=-no-pie
1115         # as a workaround.
1116         #
1117         if(CMAKE_VERSION VERSION_LESS "3.14")
1118                 check_c_linker_flag(-pie LINK_pie_VALID)
1119                 if(LINK_pie_VALID)
1120                         set(CMAKE_EXE_LINKER_FLAGS "-pie ${CMAKE_EXE_LINKER_FLAGS}")
1121                 endif()
1122         else()
1123                 include(CheckPIESupported)
1124                 check_pie_supported()
1125         endif()
1126 endif()
1127
1128 foreach(THIS_FLAG ${WIRESHARK_LD_FLAGS})
1129         string(MAKE_C_IDENTIFIER "LINK${THIS_FLAG}_VALID" _flag_var)
1130         check_c_linker_flag(${THIS_FLAG} ${_flag_var})
1131         if (${_flag_var})
1132                 set(WS_LINK_FLAGS "${WS_LINK_FLAGS} ${THIS_FLAG}")
1133         endif()
1134 endforeach()
1135 message(STATUS "Linker flags: ${WS_LINK_FLAGS}")
1136
1137 if(APPLE AND EXISTS /usr/local/opt/gettext)
1138         # GLib on macOS requires libintl. Homebrew installs gettext (and
1139         # libintl) in /usr/local/opt/gettext
1140         include_directories(SYSTEM /usr/local/opt/gettext/include)
1141         link_directories(/usr/local/opt/gettext/lib)
1142 endif()
1143
1144 # Resets cache variables if the <PackageName>_LIBRARY has become invalid.
1145 # Call it before a find_package(<PackageName> ...) invocation that uses
1146 # find_library(<PackageName>_LIBRARY ...).
1147 #
1148 # Usage: reset_find_package(<PackageName> [<extra variables to clear>])
1149 function(reset_find_package _package_name)
1150         set(variables
1151                 # find_library / find_package
1152                 ${_package_name}_LIBRARY
1153                 ${_package_name}_INCLUDE_DIR
1154                 # mark_as_advanced
1155                 ${_package_name}_LIBRARIES
1156                 ${_package_name}_INCLUDE_DIRS
1157                 # Others
1158                 ${_package_name}_DLL_DIR
1159                 ${_package_name}_DLLS
1160                 ${_package_name}_DLL
1161                 ${_package_name}_PDB
1162                 ${ARGN}
1163         )
1164         if(NOT ${_package_name}_LIBRARY OR EXISTS ${${_package_name}_LIBRARY})
1165                 # Cache variable is already missing or cache entry is valid.
1166                 return()
1167         endif()
1168         message(STATUS "Package ${_package_name} has changed, clearing cache.")
1169         foreach(_var IN LISTS variables)
1170                 unset(${_var} CACHE)
1171         endforeach()
1172 endfunction()
1173
1174 # ws_find_package(<PackageName>
1175 #             <CMakeOptions.txt boolean variable>
1176 #             <cmakeconfig.h.in macro definition>
1177 #             [remaining find_package() arguments])
1178 macro(ws_find_package _package_name _enable_package _package_cmakedefine)
1179         if(${_enable_package})
1180                 # Clear outdated cache variables if not already.
1181                 reset_find_package(${_package_name})
1182                 find_package(${_package_name} ${ARGN})
1183                 if(${_package_name}_FOUND)
1184                         set(${_package_cmakedefine} 1)
1185                 endif()
1186         endif()
1187 endmacro()
1188
1189 # The minimum package list
1190 find_package(Git)
1191 reset_find_package(GLIB2 GLIB2_MAIN_INCLUDE_DIR GLIB2_INTERNAL_INCLUDE_DIR)
1192 find_package(GLIB2 "2.54.0" REQUIRED)
1193 include_directories(SYSTEM ${GLIB2_INCLUDE_DIRS})
1194 reset_find_package(GMODULE2)
1195 find_package(GMODULE2)
1196 reset_find_package(GTHREAD2)
1197 find_package(GTHREAD2 REQUIRED)
1198 reset_find_package(GCRYPT GCRYPT_ERROR_LIBRARY)
1199 find_package(GCRYPT "1.8.0" REQUIRED)
1200 # C Asynchronous resolver
1201 reset_find_package(CARES)
1202 find_package(CARES "1.13.0" REQUIRED)
1203 find_package(LEX REQUIRED)
1204 find_package(Perl)
1205 find_package(PCRE2 REQUIRED)
1206
1207 if (NOT WIN32)
1208         find_package(Gettext)
1209         find_package(M REQUIRED)
1210 endif()
1211
1212 if(BUILD_sshdump OR BUILD_ciscodump OR BUILD_wifidump)
1213         set(ENABLE_LIBSSH ON)
1214 else()
1215         set(ENABLE_LIBSSH OFF)
1216 endif()
1217 ws_find_package(LIBSSH ENABLE_LIBSSH HAVE_LIBSSH "0.6")
1218
1219 ws_find_package(PCAP ENABLE_PCAP HAVE_LIBPCAP)
1220 ws_find_package(AIRPCAP ENABLE_AIRPCAP HAVE_AIRPCAP)
1221 ws_find_package(Systemd BUILD_sdjournal HAVE_SYSTEMD)
1222
1223 # Build one of the Qt GUIs?
1224 if(BUILD_wireshark OR BUILD_logray)
1225         if(USE_qt6)
1226                 set(qtver 6)
1227                 if(DEFINED ENV{WIRESHARK_QT6_PREFIX_PATH})
1228                         list(APPEND CMAKE_PREFIX_PATH $ENV{WIRESHARK_QT6_PREFIX_PATH})
1229                 endif()
1230
1231                 set(CMAKE_CXX_STANDARD 17)
1232                 # Setting CMAKE_CXX_STANDARD is not sufficient with MSVC, see
1233                 #   https://gitlab.kitware.com/cmake/cmake/-/issues/18837
1234                 # The below test can be found in Qt6, lib/cmake/Qt6/QtFeature.cmake
1235                 if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC" AND MSVC_VERSION GREATER_EQUAL 1913)
1236                         # Cannot use add_definitions() here because rc.exe does not understand this flag.
1237                         # https://cmake.org/pipermail/cmake/2009-August/031672.html
1238                         set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Zc:__cplusplus")
1239                 endif()
1240
1241                 find_package(Qt6 REQUIRED
1242                         COMPONENTS
1243                                 Core
1244                                 Gui
1245                                 LinguistTools
1246                                 PrintSupport
1247                                 Widgets
1248                                 Concurrent
1249                                 Core5Compat
1250                         OPTIONAL_COMPONENTS
1251                                 Multimedia
1252                 )
1253         else(USE_qt6)
1254                 set(qtver 5)
1255                 if(DEFINED ENV{WIRESHARK_QT5_PREFIX_PATH})
1256                         list(APPEND CMAKE_PREFIX_PATH $ENV{WIRESHARK_QT5_PREFIX_PATH})
1257                 endif()
1258                 if(APPLE AND EXISTS /usr/local/opt/qt5)
1259                         # Homebrew installs Qt5 (up to at least 5.11.0) in
1260                         # /usr/local/qt5. Ensure that it can be found by CMake
1261                         # since it is not in the default /usr/local prefix.
1262                         # Add it to PATHS so that it doesn't override the
1263                         # CMAKE_PREFIX_PATH environment variable.
1264                         # QT_FIND_PACKAGE_OPTIONS should be passed to find_package,
1265                         # e.g. find_package(Qt5Core ${QT_FIND_PACKAGE_OPTIONS})
1266                         list(APPEND QT5_FIND_PACKAGE_OPTIONS PATHS /usr/local/opt/qt5)
1267                 endif()
1268
1269                 set(QT5_PACKAGELIST
1270                         Qt5Core
1271                         Qt5Gui
1272                         Qt5LinguistTools
1273                         Qt5PrintSupport
1274                         Qt5Widgets
1275                         Qt5Concurrent
1276                 )
1277                 set(QT5_OPTIONAL_PACKAGELIST
1278                         Qt5Multimedia
1279                 )
1280                 if(WIN32)
1281                         list(APPEND QT5_PACKAGELIST Qt5WinExtras)
1282                 endif()
1283                 foreach(_qt5_package IN LISTS QT5_PACKAGELIST)
1284                         find_package(${_qt5_package} REQUIRED ${QT5_FIND_PACKAGE_OPTIONS})
1285                         list(APPEND QT5_LIBRARIES ${${_qt5_package}_LIBRARIES})
1286                         list(APPEND QT5_INCLUDE_DIRS ${${_qt5_package}_INCLUDE_DIRS})
1287                         list(APPEND QT5_COMPILE_DEFINITIONS ${${_qt5_package}_COMPILE_DEFINITIONS})
1288                 endforeach()
1289                 foreach(_qt5_package IN LISTS QT5_OPTIONAL_PACKAGELIST)
1290                         find_package(${_qt5_package} ${QT5_FIND_PACKAGE_OPTIONS})
1291                         list(APPEND QT5_LIBRARIES ${${_qt5_package}_LIBRARIES})
1292                         list(APPEND QT5_INCLUDE_DIRS ${${_qt5_package}_INCLUDE_DIRS})
1293                         list(APPEND QT5_COMPILE_DEFINITIONS ${${_qt5_package}_COMPILE_DEFINITIONS})
1294                 endforeach()
1295
1296                 if (Qt5Widgets_VERSION VERSION_LESS 5.10)
1297                         message(FATAL_ERROR "Qt 5.12 or later is required.")
1298                 endif()
1299                 if (Qt5Widgets_VERSION VERSION_LESS 5.12)
1300                         message(WARNING "Wireshark can be build with this version of Qt, though 5.12 or higher is recommended.")
1301                 endif()
1302
1303                 if(APPLE AND "/usr/local/opt/qt5/lib/QtCore.framework" IN_LIST Qt5Core_INCLUDE_DIRS)
1304                         # When qt@6 and qt@5 are both installed via Homebrew,
1305                         # /usr/local/include/QtCore/qvariant.h points to Qt 6 headers.
1306                         # Normally the Headers from `-iframework /usr/local/opt/qt5/lib`
1307                         # should be used, but `-isystem /usr/local/include` (via
1308                         # Libgcrypt and others) seems to prioritized, resulting in use
1309                         # of the Qt6 headers. Resolve this by explicit including Qt5.
1310                         list(APPEND QT5_INCLUDE_DIRS /usr/local/opt/qt5/include)
1311                 endif()
1312         endif(USE_qt6)
1313
1314         set(QT_FOUND ON)
1315         if(APPLE)
1316                 ws_find_package(Sparkle ENABLE_SPARKLE HAVE_SOFTWARE_UPDATE 2)
1317         endif()
1318         if(Qt6Multimedia_FOUND OR Qt5Multimedia_FOUND)
1319                 set(QT_MULTIMEDIA_LIB 1)
1320         endif()
1321         if(NOT DEFINED MOC_OPTIONS)
1322                 # Squelch moc verbose "nothing to do" output
1323                 set(MOC_OPTIONS -nn)
1324         endif()
1325 endif()
1326
1327 # MaxMind DB address resolution
1328 reset_find_package(MAXMINDDB)
1329 ws_find_package(MaxMindDB BUILD_mmdbresolve HAVE_MAXMINDDB)
1330
1331 # SMI SNMP
1332 reset_find_package(SMI SMI_SHARE_DIR)
1333 ws_find_package(SMI ENABLE_SMI HAVE_LIBSMI)
1334
1335 # Support for TLS decryption using RSA private keys.
1336 ws_find_package(GNUTLS ENABLE_GNUTLS HAVE_LIBGNUTLS "3.5.8")
1337
1338 # Kerberos
1339 ws_find_package(KERBEROS ENABLE_KERBEROS HAVE_KERBEROS)
1340
1341 # Zlib compression
1342 ws_find_package(ZLIB ENABLE_ZLIB HAVE_ZLIB)
1343
1344 # Minizip compression
1345 ws_find_package(Minizip ENABLE_MINIZIP HAVE_MINIZIP)
1346
1347 # Brotli compression
1348 ws_find_package(BROTLI ENABLE_BROTLI HAVE_BROTLI)
1349
1350 # LZ4 compression
1351 ws_find_package(LZ4 ENABLE_LZ4 HAVE_LZ4)
1352
1353 # Snappy compression
1354 ws_find_package(SNAPPY ENABLE_SNAPPY HAVE_SNAPPY)
1355
1356 # zstd compression
1357 ws_find_package(ZSTD ENABLE_ZSTD HAVE_ZSTD "1.0.0")
1358
1359 # Enhanced HTTP/2 dissection
1360 ws_find_package(NGHTTP2 ENABLE_NGHTTP2 HAVE_NGHTTP2 "1.11.0")
1361
1362 # Embedded Lua interpreter
1363 if(FETCH_lua)
1364         # Download and build lua
1365         include(${CMAKE_SOURCE_DIR}/cmake/external/lua52/Lua52.cmake)
1366 else()
1367         ws_find_package(LUA ENABLE_LUA HAVE_LUA "5.1")
1368 endif()
1369
1370 ws_find_package(NL ENABLE_NETLINK HAVE_LIBNL)
1371
1372 ws_find_package(SBC ENABLE_SBC HAVE_SBC)
1373
1374 # SpanDSP codec
1375 ws_find_package(SPANDSP ENABLE_SPANDSP HAVE_SPANDSP)
1376
1377 ws_find_package(BCG729 ENABLE_BCG729 HAVE_BCG729)
1378
1379 ws_find_package(AMRNB ENABLE_AMRNB HAVE_AMRNB)
1380
1381 ws_find_package(ILBC ENABLE_ILBC HAVE_ILBC)
1382
1383 ws_find_package(OPUS ENABLE_OPUS HAVE_OPUS)
1384
1385 if (BUILD_logray)
1386         # libsinsp+libscap, required for falco-bridge
1387         ws_find_package(Sinsp ENABLE_SINSP HAVE_SINSP)
1388 endif()
1389
1390 # CMake 3.9 and below used 'LIBXML2_LIBRARIES' as the name of the cache entry
1391 # storing the find_library result. Transfer it to the new cache variable such
1392 # that reset_find_package can detect and clear outdated cache variables.
1393 if(DEFINED LIBXML2_LIBRARIES AND NOT DEFINED LIBXML2_LIBRARY)
1394         set(LIBXML2_LIBRARY ${LIBXML2_LIBRARIES} CACHE FILEPATH "")
1395 endif()
1396 # Call reset_find_package explicitly since variables are in upper case.
1397 reset_find_package(LIBXML2)
1398 ws_find_package(LibXml2 ENABLE_LIBXML2 HAVE_LIBXML2)
1399 if(NOT LIBXML2_FOUND)
1400         # CMake 3.9 and below used LIBXML2_LIBRARIES as the name of
1401         # the cache entry storing the find_library result.
1402         # Current CMake (3.13) and below sets LIBXML2_LIBRARIES and LIBXML2_INCLUDE_DIRS
1403         # to a non-empty value, be sure to clear it when not found.
1404         set(LIBXML2_LIBRARIES "")
1405         set(LIBXML2_INCLUDE_DIRS "")
1406 endif()
1407
1408 # Capabilities to run dumpcap as non-root user.
1409 if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
1410         ws_find_package(CAP ENABLE_CAP HAVE_LIBCAP)
1411         find_package(SETCAP)
1412 endif()
1413
1414 # Windows version updates
1415 ws_find_package(WinSparkle ENABLE_WINSPARKLE HAVE_SOFTWARE_UPDATE)
1416
1417 find_package( Asciidoctor 1.5 )
1418 find_package( XSLTPROC )
1419
1420 find_package(DOXYGEN)
1421
1422 # The SpeexDSP resampler is required iff building wireshark or sharkd.
1423 if(BUILD_wireshark OR BUILD_logray OR BUILD_sharkd)
1424         find_package(SpeexDSP REQUIRED)
1425 endif()
1426
1427 # Generate the distribution tarball.
1428 add_custom_target(dist
1429         COMMAND ${CMAKE_BINARY_DIR}/packaging/source/git-export-release.sh -d "${CMAKE_BINARY_DIR}"
1430         WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
1431 )
1432
1433 if(GNUTLS_FOUND)
1434         # Calculating public keys from PKCS #11 private keys requires GnuTLS
1435         # 3.4.0 or greater.
1436         #
1437         # Check that the support is present in case GnuTLS was compiled
1438         # --without-p11-kit as macos-setup.sh did until December 2020.
1439         cmake_push_check_state()
1440         if(WIN32 AND NOT MINGW)
1441                 set(CMAKE_REQUIRED_DEFINITIONS -Dssize_t=int)
1442         endif()
1443         set(CMAKE_REQUIRED_INCLUDES ${GNUTLS_INCLUDE_DIRS})
1444         set(CMAKE_REQUIRED_LIBRARIES ${GNUTLS_LIBRARIES})
1445         check_symbol_exists(gnutls_pkcs11_obj_list_import_url4 gnutls/pkcs11.h HAVE_GNUTLS_PKCS11)
1446         cmake_pop_check_state()
1447 endif()
1448
1449 if (QT_FOUND)
1450         # CMake uses qmake to find Qt4. It relies on Qt's CMake modules
1451         # to find Qt5. This means that we can't assume that the qmake
1452         # in our PATH is the correct one. We can fetch qmake's location
1453         # from Qt5::qmake, which is defined in Qt5CoreConfigExtras.cmake.
1454         get_target_property(QT_QMAKE_EXECUTABLE Qt${qtver}::qmake IMPORTED_LOCATION)
1455         get_filename_component(_qt_bin_path "${QT_QMAKE_EXECUTABLE}" DIRECTORY)
1456         set(QT_BIN_PATH "${_qt_bin_path}" CACHE INTERNAL
1457                 "Path to qmake, macdeployqt, windeployqt, and other Qt utilities."
1458         )
1459         # Use qmake to find windeployqt and macdeployqt. Ideally one of
1460         # the modules in ${QTDIR}/lib/cmake would do this for us.
1461         if(WIN32)
1462                 if (USE_qt6 AND USE_MSYSTEM)
1463                         set(_windeployqt_name "windeployqt-qt6")
1464                 else()
1465                         set(_windeployqt_name "windeployqt")
1466                 endif()
1467                 find_program(QT_WINDEPLOYQT_EXECUTABLE ${_windeployqt_name}
1468                         HINTS "${QT_BIN_PATH}"
1469                         DOC "Path to the windeployqt utility."
1470                 )
1471                 # As of Qt 6.5.0, the official Qt "MSVC 2019 ARM64 (TP)" libraries don't ship
1472                 # with native Arm64 executables. Instead, you get x64 executables installed in
1473                 # msvc2019_x64. Look for the path to "qmake.bat", which has to be passed to
1474                 # windeployqt so that it can install the proper DLLs.
1475                 # https://bugreports.qt.io/browse/QTBUG-100070
1476                 set(QT_WINDEPLOYQT_EXTRA_ARGS)
1477                 find_program(_qt_qmake_bat qmake.bat
1478                         HINTS ENV CMAKE_PREFIX_PATH
1479                         PATH_SUFFIXES bin
1480                         DOC "Path to qmake.bat."
1481                 )
1482                 if(_qt_qmake_bat)
1483                         set (QT_WINDEPLOYQT_EXTRA_ARGS "--qmake \"${_qt_qmake_bat}\"")
1484                 endif()
1485         elseif(APPLE)
1486                 find_program(QT_MACDEPLOYQT_EXECUTABLE macdeployqt
1487                         HINTS "${QT_BIN_PATH}"
1488                         DOC "Path to the macdeployqt utility."
1489                 )
1490                 find_program(DMGBUILD_EXECUTABLE dmgbuild
1491                         DOC "Path to the dmgbuild utility"
1492                 )
1493                 # https://doc.qt.io/qt-5/supported-platforms.html
1494                 # https://doc.qt.io/qt-5.11/supported-platforms-and-configurations.html
1495                 # https://doc.qt.io/qt-5.15/supported-platforms.html
1496                 # https://doc-snapshots.qt.io/qt6-dev/supported-platforms.html
1497                 if(Qt${qtver}Widgets_VERSION VERSION_GREATER_EQUAL "6.0.0")
1498                         set(MIN_MACOS_VERSION 10.14)
1499                 elseif(Qt5Widgets_VERSION VERSION_GREATER_EQUAL "5.14.0")
1500                         set(MIN_MACOS_VERSION 10.13)
1501                 elseif(Qt5Widgets_VERSION VERSION_GREATER_EQUAL "5.12.0")
1502                         set(MIN_MACOS_VERSION 10.12)
1503                 elseif(Qt5Widgets_VERSION VERSION_GREATER_EQUAL "5.10.0")
1504                         set(MIN_MACOS_VERSION 10.11)
1505                 endif()
1506                 if(CMAKE_OSX_DEPLOYMENT_TARGET AND CMAKE_OSX_DEPLOYMENT_TARGET VERSION_LESS MIN_MACOS_VERSION)
1507                         message(FATAL_ERROR "Qt version ${Qt${qtver}Widgets_VERSION} requires CMAKE_OSX_DEPLOYMENT_TARGET (${CMAKE_OSX_DEPLOYMENT_TARGET}) >= ${MIN_MACOS_VERSION}")
1508                 endif()
1509         endif()
1510
1511         # Qt requires MSVC /permissive- option since 6.3 release
1512         if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC" AND Qt${qtver}Widgets_VERSION VERSION_GREATER_EQUAL "6.3.0")
1513                 add_compile_options("/permissive-")
1514         endif()
1515 endif()
1516
1517 if(ENABLE_CHECKHF_CONFLICT)
1518         set(ENABLE_CHECK_FILTER 1)
1519 endif()
1520
1521 #
1522 # Platform-specific additional libraries.
1523 #
1524 if(WIN32)
1525         set(WIN_COMCTL32_LIBRARY comctl32.lib)
1526         set(WIN_IPHLPAPI_LIBRARY iphlpapi.lib)
1527         set(WIN_PSAPI_LIBRARY    psapi.lib)
1528         set(WIN_VERSION_LIBRARY  version.lib)
1529         set(WIN_WS2_32_LIBRARY   ws2_32.lib)
1530 endif()
1531
1532 if(APPLE)
1533         #
1534         # We assume that APPLE means macOS so that we have the macOS
1535         # frameworks.
1536         #
1537         set(HAVE_MACOS_FRAMEWORKS 1)
1538         FIND_LIBRARY (APPLE_APPLICATION_SERVICES_LIBRARY ApplicationServices)
1539         FIND_LIBRARY (APPLE_APPKIT_LIBRARY AppKit)
1540         FIND_LIBRARY (APPLE_CORE_FOUNDATION_LIBRARY CoreFoundation)
1541         FIND_LIBRARY (APPLE_SYSTEM_CONFIGURATION_LIBRARY SystemConfiguration)
1542
1543         message(STATUS "Building for Mac OS X/OS X/macOS ${MIN_MACOS_VERSION} using SDK ${CMAKE_OSX_SYSROOT}")
1544 endif()
1545
1546 include(ConfigureChecks.cmake)
1547
1548 # Global properties
1549 set_property(GLOBAL PROPERTY USE_FOLDERS ON)
1550
1551 if(ENABLE_CCACHE)
1552         if(NOT (CMAKE_COMPILER_IS_GNUCC OR CMAKE_C_COMPILER_ID MATCHES "Clang"))
1553                 # https://ccache.dev/platform-compiler-language-support.html
1554                 message(WARNING "Ccache is enabled, but your compiler is ${CMAKE_C_COMPILER_ID}."
1555                 " We wish you the best of luck.")
1556         endif()
1557         find_program(CCACHE_EXECUTABLE ccache)
1558         if(CCACHE_EXECUTABLE)
1559                 set(CMAKE_C_COMPILER_LAUNCHER "${CCACHE_EXECUTABLE}")
1560                 set(CMAKE_CXX_COMPILER_LAUNCHER "${CCACHE_EXECUTABLE}")
1561                 set(CMAKE_C_LINKER_LAUNCHER "${CCACHE_EXECUTABLE}")
1562                 set(CMAKE_CXX_LINKER_LAUNCHER "${CCACHE_EXECUTABLE}")
1563         endif()
1564 endif()
1565
1566 # The top level checkAPIs target, add before subdirectory calls so it's avaiable to all
1567 add_custom_target(checkAPI)
1568 set_target_properties(checkAPI
1569         PROPERTIES
1570                 FOLDER "Auxiliary"
1571                 EXCLUDE_FROM_ALL True
1572                 EXCLUDE_FROM_DEFAULT_BUILD True
1573 )
1574
1575 include( UseCheckAPI )
1576
1577 # Target platform locations
1578 # UN*X in general, including macOS if not building an app bundle:
1579 # $DESTDIR/lib/wireshark/extcap
1580 # Windows: $DESTDIR/extcap
1581 # macOS app bundle: Wireshark.app/Contents/Resources/share/wireshark/extcap
1582 # If you change the nesting level be sure to check also the INSTALL_RPATH
1583 # target property.
1584 if(WIN32 AND NOT USE_MSYSTEM)
1585         set(EXTCAP_INSTALL_LIBDIR "extcap" CACHE INTERNAL "The extcap dir")
1586 else()
1587         set(EXTCAP_INSTALL_LIBDIR "${CMAKE_INSTALL_LIBDIR}/${PROJECT_NAME}/extcap" CACHE INTERNAL "The extcap dir")
1588 endif()
1589 set(EXTCAP_INSTALL_FULL_LIBDIR "${CMAKE_INSTALL_PREFIX}/${EXTCAP_INSTALL_LIBDIR}")
1590
1591 if(APPLE)
1592         #
1593         # As https://developer.apple.com/library/archive/technotes/tn2206/_index.html
1594         # says,
1595         #
1596         # "Note that a location where code is expected to reside cannot generally
1597         # contain directories full of nested code, because those directories tend
1598         # to be interpreted as bundles. So this occasional practice is not
1599         # recommended and not officially supported. If you do do this, do not use
1600         # periods in the directory names. The code signing machinery interprets
1601         # directories with periods in their names as code bundles and will reject
1602         # them if they don't conform to the expected code bundle layout."
1603         #
1604         set(PLUGIN_PATH_ID "${PROJECT_MAJOR_VERSION}-${PROJECT_MINOR_VERSION}")
1605 else()
1606         set(PLUGIN_PATH_ID "${PROJECT_MAJOR_VERSION}.${PROJECT_MINOR_VERSION}")
1607 endif()
1608
1609 # Directory where plugins and Lua dissectors can be found.
1610 if(WIN32 AND NOT USE_MSYSTEM)
1611         set(PLUGIN_INSTALL_LIBDIR "plugins" CACHE INTERNAL "The plugin dir")
1612 else()
1613         set(PLUGIN_INSTALL_LIBDIR "${CMAKE_INSTALL_LIBDIR}/${PROJECT_NAME}/plugins" CACHE INTERNAL "The plugin dir")
1614 endif()
1615 set(PLUGIN_INSTALL_FULL_LIBDIR "${CMAKE_INSTALL_PREFIX}/${PLUGIN_INSTALL_LIBDIR}")
1616 set(PLUGIN_INSTALL_VERSION_LIBDIR "${PLUGIN_INSTALL_LIBDIR}/${PLUGIN_PATH_ID}")
1617 set(PLUGIN_VERSION_DIR "plugins/${PLUGIN_PATH_ID}")
1618
1619 add_subdirectory( capture )
1620 add_subdirectory( doc )
1621 add_subdirectory( docbook EXCLUDE_FROM_ALL )
1622 add_subdirectory( epan )
1623 add_subdirectory( extcap )
1624 add_subdirectory( randpkt_core )
1625 if(NOT LEMON_EXECUTABLE)
1626         add_subdirectory( tools/lemon )
1627 endif()
1628 if(PCAP_FOUND)
1629         add_subdirectory( tools/radiotap-gen )
1630 endif()
1631 add_subdirectory( ui )
1632 add_subdirectory( wiretap )
1633 add_subdirectory( writecap )
1634
1635 # Location of our data files. This should be set to a value that allows
1636 # running from the build directory on Windows, on macOS when building an
1637 # application bundle, and on UNIX in general if
1638 # WIRESHARK_RUN_FROM_BUILD_DIRECTORY is set.
1639 if(ENABLE_APPLICATION_BUNDLE)
1640         if(CMAKE_CFG_INTDIR STREQUAL ".")
1641                 set(_datafile_dir "${CMAKE_BINARY_DIR}/run/Wireshark.app/Contents/Resources/share/wireshark")
1642         else()
1643                 # Xcode
1644                 set(_datafile_dir "${CMAKE_BINARY_DIR}/run/${CMAKE_CFG_INTDIR}/Wireshark.app/Contents/Resources/share/wireshark")
1645         endif()
1646 elseif(NOT CMAKE_CFG_INTDIR STREQUAL ".")
1647         # Visual Studio, Xcode, etc.
1648         set(_datafile_dir "${CMAKE_BINARY_DIR}/run/${CMAKE_CFG_INTDIR}")
1649 else()
1650         # Makefile, Ninja, etc.
1651         set(_datafile_dir "${CMAKE_BINARY_DIR}/run")
1652 endif()
1653
1654 set(DATAFILE_DIR ${_datafile_dir} CACHE INTERNAL "Build time data file location.")
1655
1656 if(ENABLE_APPLICATION_BUNDLE)
1657         if(CMAKE_CFG_INTDIR STREQUAL ".")
1658                 set(_log_datafile_dir "${CMAKE_BINARY_DIR}/run/Logray.app/Contents/Resources/share/logray")
1659         else()
1660                 # Xcode
1661                 set(_log_datafile_dir "${CMAKE_BINARY_DIR}/run/${CMAKE_CFG_INTDIR}/Logray.app/Contents/Resources/share/logray")
1662         endif()
1663         set(LOG_DATAFILE_DIR ${_log_datafile_dir} CACHE INTERNAL "Build time log analysis data file location.")
1664 # XXX We need to update wsutil/filesystem.c and packaging/nsis/*logray* to match.
1665 # elseif(NOT CMAKE_CFG_INTDIR STREQUAL ".")
1666 #       # Visual Studio, Xcode, etc.
1667 #       set(_log_datafile_dir "${CMAKE_BINARY_DIR}/run/${CMAKE_CFG_INTDIR}/share/logray")
1668 # else()
1669 #       # Makefile, Ninja, etc.
1670 #       set(_log_datafile_dir "${CMAKE_BINARY_DIR}/run/share/logray")
1671 endif()
1672
1673
1674 # wsutil must be added after DATAFILE_DIR is set such that filesystem.c can
1675 # learn about the directory location.
1676 add_subdirectory( wsutil )
1677
1678 if(BUILD_wireshark AND QT_FOUND)
1679         add_subdirectory( ui/qt )
1680 elseif(BUILD_wireshark AND USE_qt6)
1681         message(VERBOSE "To use Qt5 instead of Qt6 use CMake option USE_qt6=OFF.")
1682 endif()
1683
1684 if(BUILD_logray AND QT_FOUND)
1685         add_subdirectory( ui/logray )
1686 endif()
1687
1688 # Location of our plugins. PLUGIN_DIR should allow running
1689 # from the build directory similar to DATAFILE_DIR above.
1690 if(ENABLE_PLUGINS)
1691         # Target platform locations
1692         # UN*X in general, including macOS if not building an app bundle:
1693         # $DESTDIR/lib/wireshark/plugins/$VERSION
1694         # Windows: $DESTDIR/wireshark/plugins/$VERSION
1695         # macOS app bundle: Wireshark.app/Contents/PlugIns/wireshark
1696         set(HAVE_PLUGINS 1)
1697         add_custom_target(plugins)
1698         set_target_properties(plugins PROPERTIES FOLDER "Plugins")
1699         set(PLUGIN_SRC_DIRS
1700                 plugins/epan/ethercat
1701                 plugins/epan/gryphon
1702                 plugins/epan/irda
1703                 plugins/epan/mate
1704                 plugins/epan/opcua
1705                 plugins/epan/profinet
1706                 plugins/epan/stats_tree
1707                 plugins/epan/transum
1708                 plugins/epan/unistim
1709                 plugins/epan/wimax
1710                 plugins/epan/wimaxasncp
1711                 plugins/epan/wimaxmacphy
1712                 plugins/wiretap/usbdump
1713                 plugins/codecs/G711
1714                 plugins/codecs/l16_mono
1715                 ${CUSTOM_PLUGIN_SRC_DIR}
1716         )
1717         set(LOGRAY_PLUGIN_SRC_DIRS)
1718         if(SINSP_FOUND)
1719                 list(APPEND LOGRAY_PLUGIN_SRC_DIRS
1720                         plugins/epan/falco_bridge
1721                 )
1722         endif()
1723         if(SPANDSP_FOUND)
1724                 list(APPEND PLUGIN_SRC_DIRS
1725                         plugins/codecs/G722
1726                         plugins/codecs/G726
1727                 )
1728         endif()
1729         if(BCG729_FOUND)
1730                 list(APPEND PLUGIN_SRC_DIRS
1731                         plugins/codecs/G729
1732                 )
1733         endif()
1734         if(AMRNB_FOUND)
1735                 list(APPEND PLUGIN_SRC_DIRS
1736                         plugins/codecs/amrnb
1737                 )
1738         endif()
1739         if(ILBC_FOUND)
1740                 list(APPEND PLUGIN_SRC_DIRS
1741                         plugins/codecs/iLBC
1742                 )
1743         endif()
1744         if(OPUS_FOUND)
1745                 list(APPEND PLUGIN_SRC_DIRS
1746                         plugins/codecs/opus_dec
1747                 )
1748         endif()
1749         if(SBC_FOUND)
1750                 list(APPEND PLUGIN_SRC_DIRS
1751                         plugins/codecs/sbc
1752                 )
1753         endif()
1754
1755         # Build demo plugin, only if asked explicitly
1756         if(ENABLE_PLUGIN_IFDEMO)
1757                 list(APPEND PLUGIN_SRC_DIRS
1758                         plugins/epan/pluginifdemo
1759                 )
1760         endif()
1761
1762 else()
1763         set(PLUGIN_SRC_DIRS )
1764         set(LOGRAY_PLUGIN_SRC_DIRS )
1765 endif()
1766
1767 if(ENABLE_APPLICATION_BUNDLE)
1768         if(CMAKE_CFG_INTDIR STREQUAL ".")
1769                 set(_plugin_dir "${CMAKE_BINARY_DIR}/run/Wireshark.app/Contents/PlugIns/wireshark/${PLUGIN_PATH_ID}")
1770         else()
1771                 # Xcode
1772                 set(_plugin_dir "${CMAKE_BINARY_DIR}/run/$<CONFIG>/Wireshark.app/Contents/PlugIns/wireshark/${PLUGIN_PATH_ID}")
1773         endif()
1774         if(CMAKE_CFG_INTDIR STREQUAL ".")
1775                 set(_logray_plugin_dir "${CMAKE_BINARY_DIR}/run/Logray.app/Contents/PlugIns/logray/${PLUGIN_PATH_ID}")
1776         else()
1777                 # Xcode
1778                 set(_logray_plugin_dir "${CMAKE_BINARY_DIR}/run/$<CONFIG>/Logray.app/Contents/PlugIns/logray/${PLUGIN_PATH_ID}")
1779         endif()
1780 elseif(MSVC AND NOT CMAKE_CFG_INTDIR STREQUAL ".")
1781         set(_plugin_dir "${CMAKE_BINARY_DIR}/run/$<CONFIG>/${PLUGIN_VERSION_DIR}")
1782         set(_logray_plugin_dir ${_plugin_dir})
1783 else()
1784         set(_plugin_dir "${DATAFILE_DIR}/${PLUGIN_VERSION_DIR}")
1785         set(_logray_plugin_dir ${_plugin_dir})
1786 endif()
1787 set (PLUGIN_DIR ${_plugin_dir} CACHE INTERNAL "Build time plugin location.")
1788 set (LOGRAY_PLUGIN_DIR ${_logray_plugin_dir} CACHE INTERNAL "Build time Logray plugin location.")
1789
1790 foreach(_plugin_src_dir ${PLUGIN_SRC_DIRS} ${LOGRAY_PLUGIN_SRC_DIRS})
1791         add_subdirectory( ${_plugin_src_dir} )
1792 endforeach()
1793
1794 if(VCSVERSION_OVERRIDE)
1795         # Allow distributors to override detection of the Git tag and version.
1796         string(CONFIGURE "#define VCSVERSION \"@VCSVERSION_OVERRIDE@\"\n"
1797                 _version_h_contents ESCAPE_QUOTES)
1798         file(WRITE "${CMAKE_BINARY_DIR}/vcs_version.h" "${_version_h_contents}")
1799         message(STATUS "VCSVERSION_OVERRIDE: ${VCSVERSION_OVERRIDE}")
1800 else()
1801         add_custom_target(vcs_version
1802                 BYPRODUCTS vcs_version.h
1803                 COMMAND ${Python3_EXECUTABLE}
1804                         ${CMAKE_SOURCE_DIR}/tools/make-version.py
1805                         ${CMAKE_SOURCE_DIR}
1806         )
1807         set_target_properties(vcs_version PROPERTIES FOLDER "Auxiliary")
1808 endif()
1809
1810 set( configure_input "Built with CMake ${CMAKE_VERSION}" )
1811 configure_file(${CMAKE_SOURCE_DIR}/cmakeconfig.h.in ${CMAKE_BINARY_DIR}/config.h)
1812
1813 configure_file(${CMAKE_SOURCE_DIR}/ws_version.h.in ${CMAKE_BINARY_DIR}/ws_version.h)
1814
1815 set( prefix "${CMAKE_INSTALL_PREFIX}" )
1816 set( exec_prefix "\${prefix}" )
1817 set( libdir "\${exec_prefix}/${CMAKE_INSTALL_LIBDIR}" )
1818 set( includedir  "\${prefix}/include" )
1819 set( plugindir "\${libdir}/wireshark/${PLUGIN_VERSION_DIR}" )
1820
1821 # Doxygen variables
1822 file(GLOB TOP_LEVEL_SOURCE_LIST *.c *.cpp *.h)
1823 string (REPLACE ";" " " DOXYGEN_TOP_LEVEL_SOURCES "${TOP_LEVEL_SOURCE_LIST}")
1824 set(DOXYGEN_INPUT_DIRECTORY ${CMAKE_SOURCE_DIR})
1825 set(DOXYGEN_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR})
1826
1827 set(CFG_OUT_FILES
1828         doxygen.cfg
1829         packaging/macosx/osx-app.sh
1830         packaging/macosx/osx-dmg.sh
1831         packaging/macosx/wireshark-app.dmgbuild
1832         packaging/macosx/wireshark-dsym.dmgbuild
1833         packaging/macosx/WiresharkInfo.plist
1834         packaging/source/git-export-release.sh
1835         resources/dumpcap.rc
1836         resources/libwireshark.rc
1837         resources/libwiretap.rc
1838         resources/libwsutil.rc
1839         resources/wireshark.exe.manifest
1840         resources/wireshark.rc
1841         wireshark.pc
1842 )
1843
1844 if(BUILD_logray)
1845         list(APPEND CFG_OUT_FILES
1846                 packaging/macosx/LograyInfo.plist
1847                 packaging/macosx/logray-app.dmgbuild
1848                 packaging/macosx/logray-dsym.dmgbuild
1849                 resources/logray.exe.manifest
1850         )
1851 endif()
1852
1853 foreach( _cfg_file ${CFG_OUT_FILES} )
1854         configure_file( ${CMAKE_SOURCE_DIR}/${_cfg_file}.in ${CMAKE_BINARY_DIR}/${_cfg_file} @ONLY )
1855 endforeach()
1856
1857 include(FeatureSummary)
1858 set_package_properties(CAP PROPERTIES
1859         DESCRIPTION "The Libcap package implements the user-space interfaces to the POSIX 1003.1e capabilities available in Linux kernels"
1860         URL "https://sites.google.com/site/fullycapable/"
1861         PURPOSE "Allow packet captures without running as root"
1862 )
1863 set_package_properties(SBC PROPERTIES
1864         DESCRIPTION "Bluetooth low-complexity, subband codec (SBC) decoder"
1865         URL "https://git.kernel.org/pub/scm/bluetooth/sbc.git"
1866         PURPOSE "Support for playing SBC codec in RTP player"
1867 )
1868 set_package_properties(SPANDSP PROPERTIES
1869         DESCRIPTION "a library of many DSP functions for telephony"
1870         URL "https://www.soft-switch.org"
1871         PURPOSE "Support for G.722 and G.726 codecs in RTP player"
1872 )
1873 set_package_properties(BCG729 PROPERTIES
1874         DESCRIPTION "G.729 decoder"
1875         URL "https://www.linphone.org/technical-corner/bcg729"
1876         PURPOSE "Support for G.729 codec in RTP player"
1877 )
1878 set_package_properties(AMRNB PROPERTIES
1879         DESCRIPTION "AMRNB decoder"
1880         URL "https://sourceforge.net/p/opencore-amr"
1881         PURPOSE "Support for AMRNB codec in RTP player"
1882 )
1883 set_package_properties(ILBC PROPERTIES
1884         DESCRIPTION "iLBC decoder"
1885         URL "https://github.com/TimothyGu/libilbc"
1886         PURPOSE "Support for iLBC codec in RTP player"
1887 )
1888 set_package_properties(OPUS PROPERTIES
1889         DESCRIPTION "opus decoder"
1890         URL "https://opus-codec.org/"
1891         PURPOSE "Support for opus codec in RTP player"
1892 )
1893 set_package_properties(LIBXML2 PROPERTIES
1894         DESCRIPTION "XML parsing library"
1895         URL "http://xmlsoft.org/"
1896         PURPOSE "Read XML configuration files in EPL dissector"
1897 )
1898 set_package_properties(LIBSSH PROPERTIES
1899         DESCRIPTION "Library for implementing SSH clients"
1900         URL "https://www.libssh.org/"
1901         PURPOSE "extcap remote SSH interfaces (sshdump, ciscodump, wifidump)"
1902 )
1903 set_package_properties(LZ4 PROPERTIES
1904         DESCRIPTION "LZ4 is a fast lossless compression algorithm"
1905         URL "http://www.lz4.org"
1906         PURPOSE "LZ4 decompression in CQL and Kafka dissectors, read compressed capture files"
1907 )
1908 set_package_properties(SNAPPY PROPERTIES
1909         DESCRIPTION "A fast compressor/decompressor from Google"
1910         URL "https://google.github.io/snappy/"
1911         PURPOSE "Snappy decompression in CQL and Kafka dissectors"
1912 )
1913 set_package_properties(ZSTD PROPERTIES
1914         DESCRIPTION "A compressor/decompressor from Facebook providing better compression than Snappy at a cost of speed"
1915         URL "https://facebook.github.io/zstd/"
1916         PURPOSE "Zstd decompression in Kafka dissector, read compressed capture files"
1917 )
1918 set_package_properties(NGHTTP2 PROPERTIES
1919         DESCRIPTION "HTTP/2 C library and tools"
1920         URL "https://nghttp2.org"
1921         PURPOSE "Header decompression in HTTP2"
1922 )
1923 set_package_properties(CARES PROPERTIES
1924         DESCRIPTION "Library for asynchronous DNS requests"
1925         URL "https://c-ares.org/"
1926         PURPOSE "DNS name resolution for captures"
1927 )
1928 set_package_properties(Systemd PROPERTIES
1929         URL "https://freedesktop.org/wiki/Software/systemd/"
1930         DESCRIPTION "System and Service Manager (libraries)"
1931         PURPOSE "Support for systemd journal extcap interface (sdjournal)"
1932 )
1933 set_package_properties(NL PROPERTIES
1934         URL "https://www.infradead.org/~tgr/libnl/"
1935         DESCRIPTION "Libraries for using the Netlink protocol on Linux"
1936         PURPOSE "Support for managing wireless 802.11 interfaces"
1937 )
1938 set_package_properties(MaxMindDB PROPERTIES
1939         URL "https://github.com/maxmind/libmaxminddb"
1940         DESCRIPTION "C library for the MaxMind DB file format"
1941         PURPOSE "Support for GeoIP lookup"
1942 )
1943 set_package_properties(SpeexDSP PROPERTIES
1944         URL "https://www.speex.org/"
1945         DESCRIPTION "SpeexDSP is a patent-free, Open Source/Free Software DSP library"
1946         PURPOSE "RTP audio resampling"
1947 )
1948 set_package_properties(Minizip PROPERTIES
1949         URL "https://github.com/madler/zlib"
1950         DESCRIPTION "Mini zip and unzip based on zlib"
1951         PURPOSE "Support for profiles import/export"
1952 )
1953 set_package_properties(SMI PROPERTIES
1954         URL "https://www.ibr.cs.tu-bs.de/projects/libsmi/"
1955         DESCRIPTION "Library to access SMI management information"
1956         PURPOSE "Support MIB and PIB parsing and OID resolution"
1957 )
1958 set_package_properties(PCRE2 PROPERTIES
1959         URL "https://www.pcre.org"
1960         DESCRIPTION "Regular expression pattern matching using the same syntax and semantics as Perl 5"
1961         PURPOSE "Support for regular expressions"
1962 )
1963 set_package_properties(Sinsp PROPERTIES
1964         DESCRIPTION "libsinsp and libscap"
1965         URL "https://github.com/falcosecurity/libs/"
1966         PURPOSE "Support for Falco plugins"
1967 )
1968
1969 string(TOUPPER "${CMAKE_BUILD_TYPE}" _build_type)
1970 message(STATUS "C-Flags: ${CMAKE_C_FLAGS} ${CMAKE_C_FLAGS_${_build_type}}")
1971 message(STATUS "CXX-Flags: ${CMAKE_CXX_FLAGS} ${CMAKE_CXX_FLAGS_${_build_type}}")
1972 if(WERROR_COMMON_FLAGS)
1973         message(STATUS "Warnings as errors enabled: ${WERROR_COMMON_FLAGS}")
1974 else()
1975         message(STATUS "Warnings as errors disabled")
1976 endif()
1977
1978 feature_summary(WHAT ALL)
1979
1980 # Should this be part of libui?
1981 if(WIN32)
1982         set(PLATFORM_UI_SRC
1983                 ui/win32/file_dlg_win32.cpp
1984         )
1985         set(PLATFORM_UI_RC_FILES
1986                 resources/file_dlg_win32.rc
1987         )
1988 elseif(APPLE)
1989         set(PLATFORM_UI_SRC
1990                 ui/macosx/cocoa_bridge.mm
1991         )
1992         if (SPARKLE_FOUND)
1993                 list(APPEND PLATFORM_UI_SRC ui/macosx/sparkle_bridge.m)
1994         endif()
1995 endif()
1996
1997 set(TSHARK_TAP_SRC
1998         ${CMAKE_SOURCE_DIR}/ui/cli/tap-credentials.c
1999         ${CMAKE_SOURCE_DIR}/ui/cli/tap-camelsrt.c
2000         ${CMAKE_SOURCE_DIR}/ui/cli/tap-diameter-avp.c
2001         ${CMAKE_SOURCE_DIR}/ui/cli/tap-expert.c
2002         ${CMAKE_SOURCE_DIR}/ui/cli/tap-exportobject.c
2003         ${CMAKE_SOURCE_DIR}/ui/cli/tap-endpoints.c
2004         ${CMAKE_SOURCE_DIR}/ui/cli/tap-flow.c
2005         ${CMAKE_SOURCE_DIR}/ui/cli/tap-follow.c
2006         ${CMAKE_SOURCE_DIR}/ui/cli/tap-funnel.c
2007         ${CMAKE_SOURCE_DIR}/ui/cli/tap-gsm_astat.c
2008         ${CMAKE_SOURCE_DIR}/ui/cli/tap-hosts.c
2009         ${CMAKE_SOURCE_DIR}/ui/cli/tap-httpstat.c
2010         ${CMAKE_SOURCE_DIR}/ui/cli/tap-icmpstat.c
2011         ${CMAKE_SOURCE_DIR}/ui/cli/tap-icmpv6stat.c
2012         ${CMAKE_SOURCE_DIR}/ui/cli/tap-iostat.c
2013         ${CMAKE_SOURCE_DIR}/ui/cli/tap-iousers.c
2014         ${CMAKE_SOURCE_DIR}/ui/cli/tap-macltestat.c
2015         ${CMAKE_SOURCE_DIR}/ui/cli/tap-protocolinfo.c
2016         ${CMAKE_SOURCE_DIR}/ui/cli/tap-protohierstat.c
2017         ${CMAKE_SOURCE_DIR}/ui/cli/tap-rlcltestat.c
2018         ${CMAKE_SOURCE_DIR}/ui/cli/tap-rpcprogs.c
2019         ${CMAKE_SOURCE_DIR}/ui/cli/tap-rtd.c
2020         ${CMAKE_SOURCE_DIR}/ui/cli/tap-rtp.c
2021         ${CMAKE_SOURCE_DIR}/ui/cli/tap-rtspstat.c
2022         ${CMAKE_SOURCE_DIR}/ui/cli/tap-sctpchunkstat.c
2023         ${CMAKE_SOURCE_DIR}/ui/cli/tap-simple_stattable.c
2024         ${CMAKE_SOURCE_DIR}/ui/cli/tap-sipstat.c
2025         ${CMAKE_SOURCE_DIR}/ui/cli/tap-smbsids.c
2026         ${CMAKE_SOURCE_DIR}/ui/cli/tap-srt.c
2027         ${CMAKE_SOURCE_DIR}/ui/cli/tap-stats_tree.c
2028         ${CMAKE_SOURCE_DIR}/ui/cli/tap-sv.c
2029         ${CMAKE_SOURCE_DIR}/ui/cli/tap-voip.c
2030         ${CMAKE_SOURCE_DIR}/ui/cli/tap-wspstat.c
2031         ${CUSTOM_TSHARK_TAP_SRC}
2032
2033 )
2034
2035 # Installed into ${DATAFILE_DIR}
2036 set(INSTALL_DIRS
2037         resources/share/wireshark/profiles
2038         resources/protocols/diameter
2039         resources/protocols/dtds
2040         resources/protocols/radius
2041         resources/protocols/tpncp
2042         resources/protocols/wimaxasncp
2043 )
2044
2045 # Installed into ${DATAFILE_DIR}
2046 set(INSTALL_FILES
2047         resources/share/wireshark/cfilters
2048         resources/share/wireshark/colorfilters
2049         resources/share/wireshark/dfilter_macros
2050         resources/share/wireshark/dfilters
2051         resources/share/wireshark/smi_modules
2052         wka
2053 )
2054 set(DOC_FILES
2055         resources/share/doc/wireshark/ipmap.html
2056         resources/share/doc/wireshark/pdml2html.xsl
2057         doc/README.xml-output
2058         docbook/ws.css
2059 )
2060
2061 if (BUILD_logray)
2062         set(LOG_INSTALL_FILES
2063                 docbook/ws.css
2064                 resources/share/logray/colorfilters
2065                 resources/share/logray/dfilter_buttons
2066         )
2067 endif()
2068
2069 if (ASCIIDOCTOR_FOUND)
2070         list(APPEND DOC_FILES
2071                 ${CMAKE_BINARY_DIR}/doc/androiddump.html
2072                 ${CMAKE_BINARY_DIR}/doc/udpdump.html
2073                 ${CMAKE_BINARY_DIR}/doc/capinfos.html
2074                 ${CMAKE_BINARY_DIR}/doc/captype.html
2075                 ${CMAKE_BINARY_DIR}/doc/ciscodump.html
2076                 ${CMAKE_BINARY_DIR}/doc/dumpcap.html
2077                 ${CMAKE_BINARY_DIR}/doc/editcap.html
2078                 ${CMAKE_BINARY_DIR}/doc/extcap.html
2079                 ${CMAKE_BINARY_DIR}/doc/mergecap.html
2080                 ${CMAKE_BINARY_DIR}/doc/randpkt.html
2081                 ${CMAKE_BINARY_DIR}/doc/randpktdump.html
2082                 ${CMAKE_BINARY_DIR}/doc/etwdump.html
2083                 ${CMAKE_BINARY_DIR}/doc/rawshark.html
2084                 ${CMAKE_BINARY_DIR}/doc/reordercap.html
2085                 ${CMAKE_BINARY_DIR}/doc/sshdump.html
2086                 ${CMAKE_BINARY_DIR}/doc/wifidump.html
2087                 ${CMAKE_BINARY_DIR}/doc/text2pcap.html
2088                 ${CMAKE_BINARY_DIR}/doc/tshark.html
2089                 ${CMAKE_BINARY_DIR}/doc/wireshark.html
2090                 ${CMAKE_BINARY_DIR}/doc/wireshark-filter.html
2091         )
2092         if(MAXMINDDB_FOUND)
2093                 list(APPEND DOC_FILES ${CMAKE_BINARY_DIR}/doc/mmdbresolve.html)
2094         endif()
2095
2096         if (BUILD_corbaidl2wrs)
2097                 list(APPEND DOC_FILES ${CMAKE_BINARY_DIR}/doc/idl2wrs.html)
2098         endif()
2099         if (BUILD_xxx2deb)
2100                 list(APPEND DOC_FILES
2101                         ${CMAKE_BINARY_DIR}/doc/asn2deb.html
2102                         ${CMAKE_BINARY_DIR}/doc/idl2deb.html
2103                 )
2104         endif()
2105         if (BUILD_logray)
2106                 list(APPEND DOC_FILES
2107                         ${CMAKE_BINARY_DIR}/doc/falcodump.html
2108                 )
2109         endif()
2110 endif()
2111
2112 if(NOT WIN32)
2113         # We do this for Windows further down in the copy_data_files target.
2114         list(APPEND DOC_FILES COPYING)
2115 endif()
2116
2117 if(USE_REPOSITORY)
2118         set(_dll_output_dir "$<TARGET_FILE_DIR:wsutil>")
2119         add_custom_target(copy_cli_dlls)
2120         set_target_properties(copy_cli_dlls PROPERTIES FOLDER "Copy Tasks")
2121         add_custom_command(TARGET copy_cli_dlls PRE_BUILD
2122                 COMMAND ${CMAKE_COMMAND} -E make_directory "${_dll_output_dir}"
2123         )
2124
2125         # XXX Can (and should) we iterate over these similar to the way
2126         # the top-level CMakeLists.txt iterates over the package list?
2127
2128         # Required DLLs and their corresponding PDBs.
2129         add_custom_command(TARGET copy_cli_dlls PRE_BUILD
2130                 COMMAND ${CMAKE_COMMAND} -E copy_if_different
2131                         "$<IF:$<CONFIG:Debug>,${GLIB2_DLLS_DEBUG},${GLIB2_DLLS_RELEASE}>"
2132                         "$<IF:$<CONFIG:Debug>,${GLIB2_PDBS_DEBUG},${GLIB2_PDBS_RELEASE}>"
2133                         "${_dll_output_dir}"
2134                 WORKING_DIRECTORY $<IF:$<CONFIG:Debug>,${GLIB2_DLL_DIR_DEBUG},${GLIB2_DLL_DIR_RELEASE}>
2135                 COMMAND_EXPAND_LISTS
2136         )
2137
2138         if (MSVC AND VLD_FOUND)
2139                 add_custom_command(TARGET copy_cli_dlls PRE_BUILD
2140                         COMMAND ${CMAKE_COMMAND} -E "$<IF:$<CONFIG:Debug>,copy_if_different,true>"
2141                         "${VLD_FILES}"
2142                         "${_dll_output_dir}"
2143                         COMMAND_EXPAND_LISTS
2144                 )
2145         endif()
2146
2147         # Third party DLLs and PDBs.
2148         set (THIRD_PARTY_DLLS)
2149         set (THIRD_PARTY_PDBS)
2150         if (AIRPCAP_FOUND)
2151                 list (APPEND THIRD_PARTY_DLLS "${AIRPCAP_DLL_DIR}/${AIRPCAP_DLL}")
2152         endif(AIRPCAP_FOUND)
2153         list (APPEND THIRD_PARTY_DLLS "${CARES_DLL_DIR}/${CARES_DLL}")
2154         list (APPEND THIRD_PARTY_PDBS "${CARES_DLL_DIR}/${CARES_PDB}")
2155         # vcpkg's libmaxminddb is static-only for now. This can be uncommented when
2156         # https://github.com/maxmind/libmaxminddb/commit/3998f42bdb6678cbaa1a543057e5c81ba1668ac2
2157         # percolates up to vcpkg.
2158         # if (MAXMINDDB_FOUND)
2159         #       list (APPEND THIRD_PARTY_DLLS "${MAXMINDDB_DLL_DIR}/${MAXMINDDB_DLL}")
2160         # endif(MAXMINDDB_FOUND)
2161         if (LIBSSH_FOUND)
2162                 foreach( _dll ${LIBSSH_DLLS} )
2163                         list (APPEND THIRD_PARTY_DLLS "${LIBSSH_DLL_DIR}/${_dll}")
2164                 endforeach(_dll)
2165         endif(LIBSSH_FOUND)
2166         foreach( _dll ${GCRYPT_DLLS} )
2167                 list (APPEND THIRD_PARTY_DLLS "${GCRYPT_DLL_DIR}/${_dll}")
2168         endforeach(_dll)
2169         foreach( _dll ${GNUTLS_DLLS} )
2170                 list (APPEND THIRD_PARTY_DLLS "${GNUTLS_DLL_DIR}/${_dll}")
2171         endforeach(_dll)
2172         foreach( _dll ${KERBEROS_DLLS} )
2173                 list (APPEND THIRD_PARTY_DLLS "${KERBEROS_DLL_DIR}/${_dll}")
2174         endforeach(_dll)
2175         if (LUA_FOUND)
2176                 list (APPEND THIRD_PARTY_DLLS "${LUA_DLL_DIR}/${LUA_DLL}")
2177         endif(LUA_FOUND)
2178         if (LZ4_FOUND)
2179                 list (APPEND THIRD_PARTY_DLLS "${LZ4_DLL_DIR}/${LZ4_DLL}")
2180                 list (APPEND THIRD_PARTY_PDBS "${LZ4_DLL_DIR}/${LZ4_PDB}")
2181         endif(LZ4_FOUND)
2182         if (ZSTD_FOUND)
2183                 list (APPEND THIRD_PARTY_DLLS "${ZSTD_DLL_DIR}/${ZSTD_DLL}")
2184         endif(ZSTD_FOUND)
2185         if (NGHTTP2_FOUND)
2186                 list (APPEND THIRD_PARTY_DLLS "${NGHTTP2_DLL_DIR}/${NGHTTP2_DLL}")
2187                 list (APPEND THIRD_PARTY_PDBS "${NGHTTP2_DLL_DIR}/${NGHTTP2_PDB}")
2188         endif(NGHTTP2_FOUND)
2189         if (PCRE2_FOUND)
2190                 list (APPEND THIRD_PARTY_DLLS "${PCRE2_DLL_DIR}/${PCRE2_DLL}")
2191                 list (APPEND THIRD_PARTY_PDBS "${PCRE2_DLL_DIR}/${PCRE2_PDB}")
2192         endif(PCRE2_FOUND)
2193         if (SBC_FOUND)
2194                 list (APPEND THIRD_PARTY_DLLS "${SBC_DLL_DIR}/${SBC_DLL}")
2195         endif(SBC_FOUND)
2196         if (SPANDSP_FOUND)
2197                 list (APPEND THIRD_PARTY_DLLS "${SPANDSP_DLL_DIR}/${SPANDSP_DLL}")
2198         endif(SPANDSP_FOUND)
2199         if (BCG729_FOUND)
2200                 list (APPEND THIRD_PARTY_DLLS "${BCG729_DLL_DIR}/${BCG729_DLL}")
2201         endif(BCG729_FOUND)
2202         if (AMRNB_FOUND)
2203                 list (APPEND OPTIONAL_DLLS "${AMRNB_DLL_DIR}/${AMRNB_DLL}")
2204         endif(AMRNB_FOUND)
2205         if (ILBC_FOUND)
2206                 list (APPEND THIRD_PARTY_DLLS "${ILBC_DLL_DIR}/${ILBC_DLL}")
2207         endif(ILBC_FOUND)
2208         if (OPUS_FOUND)
2209                 list (APPEND THIRD_PARTY_DLLS "${OPUS_DLL_DIR}/${OPUS_DLL}")
2210         endif(OPUS_FOUND)
2211         if (LIBXML2_FOUND)
2212                 foreach( _dll ${LIBXML2_DLLS} )
2213                         list (APPEND THIRD_PARTY_DLLS "${LIBXML2_DLL_DIR}/${_dll}")
2214                 endforeach(_dll)
2215                 foreach( _pdb ${LIBXML2_PDBS} )
2216                         list (APPEND THIRD_PARTY_PDBS "${LIBXML2_DLL_DIR}/${_pdb}")
2217                 endforeach(_pdb)
2218         endif(LIBXML2_FOUND)
2219         if (SMI_FOUND)
2220                 list (APPEND THIRD_PARTY_DLLS "${SMI_DLL_DIR}/${SMI_DLL}")
2221                 # Wireshark.nsi wants SMI_DIR which is the base SMI directory
2222                 get_filename_component(SMI_DIR ${SMI_DLL_DIR} DIRECTORY)
2223                 add_custom_command(TARGET copy_cli_dlls PRE_BUILD
2224                         COMMAND ${CMAKE_COMMAND} -E make_directory
2225                                 "${_dll_output_dir}/snmp"
2226                         COMMAND ${CMAKE_COMMAND} -E make_directory
2227                                 "${_dll_output_dir}/snmp/mibs"
2228                         COMMAND ${CMAKE_COMMAND} -E copy_directory
2229                                 "${SMI_SHARE_DIR}/mibs/iana"
2230                                 "${_dll_output_dir}/snmp/mibs"
2231                         COMMAND ${CMAKE_COMMAND} -E copy_directory
2232                                 "${SMI_SHARE_DIR}/mibs/ietf"
2233                                 "${_dll_output_dir}/snmp/mibs"
2234                         COMMAND ${CMAKE_COMMAND} -E copy_directory
2235                                 "${SMI_SHARE_DIR}/mibs/irtf"
2236                                 "${_dll_output_dir}/snmp/mibs"
2237                         COMMAND ${CMAKE_COMMAND} -E copy_directory
2238                                 "${SMI_SHARE_DIR}/mibs/site"
2239                                 "${_dll_output_dir}/snmp/mibs"
2240                         COMMAND ${CMAKE_COMMAND} -E copy_directory
2241                                 "${SMI_SHARE_DIR}/mibs/tubs"
2242                                 "${_dll_output_dir}/snmp/mibs"
2243                         COMMAND ${CMAKE_COMMAND} -E copy_directory
2244                                 "${SMI_SHARE_DIR}/pibs"
2245                                 "${_dll_output_dir}/snmp/mibs"
2246                         COMMAND ${CMAKE_COMMAND} -E copy_directory
2247                                 "${SMI_SHARE_DIR}/yang"
2248                                 "${_dll_output_dir}/snmp/mibs"
2249                         #remove the extra directories copied (shallow copying the above would remove the need for this)
2250                         COMMAND ${CMAKE_COMMAND} -E remove_directory
2251                                 "${_dll_output_dir}/snmp/mibs/iana"
2252                         COMMAND ${CMAKE_COMMAND} -E remove_directory
2253                                 "${_dll_output_dir}/snmp/mibs/ietf"
2254                         COMMAND ${CMAKE_COMMAND} -E remove_directory
2255                                 "${_dll_output_dir}/snmp/mibs/site"
2256                         COMMAND ${CMAKE_COMMAND} -E remove_directory
2257                                 "${_dll_output_dir}/snmp/mibs/tubs"
2258                 )
2259         endif(SMI_FOUND)
2260         if (SNAPPY_FOUND)
2261                 list (APPEND THIRD_PARTY_DLLS "${SNAPPY_DLL_DIR}/${SNAPPY_DLL}")
2262         endif(SNAPPY_FOUND)
2263         if (WINSPARKLE_FOUND)
2264                 list (APPEND THIRD_PARTY_DLLS "${WINSPARKLE_DLL_DIR}/${WINSPARKLE_DLL}")
2265         endif(WINSPARKLE_FOUND)
2266         if (ZLIB_FOUND)
2267                 list (APPEND THIRD_PARTY_DLLS "${ZLIB_DLL_DIR}/${ZLIB_DLL}")
2268                 list (APPEND THIRD_PARTY_PDBS "${ZLIB_DLL_DIR}/${ZLIB_PDB}")
2269         endif(ZLIB_FOUND)
2270         if (BROTLI_FOUND)
2271                 foreach( _dll ${BROTLI_DLLS} )
2272                         list (APPEND THIRD_PARTY_DLLS "${BROTLI_DLL_DIR}/${_dll}")
2273                 endforeach(_dll)
2274         endif(BROTLI_FOUND)
2275         if (SPEEXDSP_FOUND)
2276                 list (APPEND THIRD_PARTY_DLLS "${SPEEXDSP_DLL_DIR}/${SPEEXDSP_DLL}")
2277         endif()
2278
2279         # With libs downloaded to c:/wireshark-x64-libs this currently
2280         # (early 2018) expands to about 1900 characters.
2281         if (THIRD_PARTY_DLLS)
2282                 add_custom_command(TARGET copy_cli_dlls PRE_BUILD
2283                         COMMAND ${CMAKE_COMMAND} -E copy_if_different
2284                                 ${THIRD_PARTY_DLLS}
2285                                 "${_dll_output_dir}"
2286                         VERBATIM
2287                 )
2288                 install(FILES ${THIRD_PARTY_DLLS} DESTINATION "${CMAKE_INSTALL_BINDIR}")
2289         endif(THIRD_PARTY_DLLS)
2290
2291         if (THIRD_PARTY_PDBS)
2292                 add_custom_command(TARGET copy_cli_dlls PRE_BUILD
2293                         COMMAND ${CMAKE_COMMAND} -E copy_if_different
2294                                 ${THIRD_PARTY_PDBS}
2295                                 "${_dll_output_dir}"
2296                         VERBATIM
2297                 )
2298         endif(THIRD_PARTY_PDBS)
2299
2300         add_dependencies(epan copy_cli_dlls)
2301
2302         # We have a lot of choices for creating zip archives:
2303         # - 7z, WinZip, etc., which require a separate download+install.
2304         # - "CMake -E tar cz", which creates a tar file.
2305         # - CPack, which requires a CPack configuration.
2306         # - PowerShell via PSCX or System.IO.Compression.FileSystem.
2307         # - Python via zipfile.
2308         # For now, just look for 7z. It's installed on the Windows builders,
2309         # which might be the only systems that use this target.
2310         find_program(ZIP_EXECUTABLE 7z
2311                 PATH "$ENV{PROGRAMFILES}/7-Zip" "$ENV{PROGRAMW6432}/7-Zip"
2312                 DOC "Path to the 7z utility."
2313         )
2314         if(ZIP_EXECUTABLE)
2315                 add_custom_target(pdb_zip_package COMMENT "This packages .PDBs but will not create them.")
2316                 set_target_properties(pdb_zip_package PROPERTIES FOLDER "Packaging")
2317                 set(_pdb_zip "${CMAKE_BINARY_DIR}/Wireshark-pdb-${PROJECT_VERSION}-${WIRESHARK_TARGET_PLATFORM}.zip")
2318                 file(TO_NATIVE_PATH "${_pdb_zip}" _pdb_zip_win)
2319                 add_custom_command(TARGET pdb_zip_package POST_BUILD
2320                         COMMAND ${CMAKE_COMMAND} -E remove -f "${_pdb_zip}"
2321                         COMMAND ${ZIP_EXECUTABLE} a -tzip -mmt=on "${_pdb_zip_win}"
2322                                 -bb0 -bd
2323                                 -r *.pdb *.lib
2324                         WORKING_DIRECTORY "${_dll_output_dir}"
2325                 )
2326         endif()
2327 endif()
2328
2329 # List of extra dependencies for the "copy_data_files" target
2330 set(copy_data_files_depends)
2331
2332 if(WIN32)
2333         foreach(_install_as_txt_file COPYING NEWS README.md README.windows)
2334                 # On Windows, install some files with a .txt extension so that they're
2335                 # double-clickable.
2336                 string(REGEX REPLACE ".md$" "" _no_md_file ${_install_as_txt_file})
2337                 set(_output_file "${DATAFILE_DIR}/${_no_md_file}.txt")
2338                 add_custom_command(OUTPUT ${_output_file}
2339                         COMMAND ${CMAKE_COMMAND} -E copy_if_different
2340                                 ${CMAKE_SOURCE_DIR}/${_install_as_txt_file}
2341                                 ${_output_file}
2342                         DEPENDS
2343                                 ${CMAKE_SOURCE_DIR}/${_install_as_txt_file}
2344                 )
2345                 list(APPEND copy_data_files_depends "${_output_file}")
2346         endforeach()
2347 endif()
2348
2349 foreach(_install_file ${INSTALL_FILES} ${DOC_FILES})
2350         get_filename_component(_install_file_src "${_install_file}" ABSOLUTE)
2351         get_filename_component(_install_basename "${_install_file}" NAME)
2352         set(_output_file "${DATAFILE_DIR}/${_install_basename}")
2353         add_custom_command(OUTPUT "${_output_file}"
2354                 COMMAND ${CMAKE_COMMAND} -E copy_if_different
2355                         "${_install_file_src}"
2356                         "${_output_file}"
2357                 DEPENDS
2358                         docs
2359                         "${_install_file}"
2360         )
2361         list(APPEND copy_data_files_depends "${_output_file}")
2362 endforeach()
2363
2364 if (BUILD_logray AND ENABLE_APPLICATION_BUNDLE)
2365         foreach(_install_file ${LOG_INSTALL_FILES})
2366                 get_filename_component(_install_file_src "${_install_file}" ABSOLUTE)
2367                 get_filename_component(_install_basename "${_install_file}" NAME)
2368                 set(_output_file "${LOG_DATAFILE_DIR}/${_install_basename}")
2369                 add_custom_command(OUTPUT "${_output_file}"
2370                         COMMAND ${CMAKE_COMMAND} -E copy_if_different
2371                                 "${_install_file_src}"
2372                                 "${_output_file}"
2373                         DEPENDS
2374                                 docs
2375                                 "${_install_file}"
2376                 )
2377                 list(APPEND copy_data_files_depends "${_output_file}")
2378         endforeach()
2379 endif()
2380
2381 # Install Lua files in staging directory such that Lua can used when Wireshark
2382 # is ran from the build directory. For install targets, see
2383 # epan/wslua/CMakeLists.txt
2384 if(LUA_FOUND AND ENABLE_LUA)
2385         set(_lua_files
2386                 "${CMAKE_SOURCE_DIR}/epan/wslua/init.lua"
2387                 "${CMAKE_SOURCE_DIR}/epan/wslua/console.lua"
2388                 "${CMAKE_SOURCE_DIR}/epan/wslua/browser_sslkeylog.lua"
2389         )
2390         foreach(_lua_file ${_lua_files})
2391                 get_filename_component(_lua_filename "${_lua_file}" NAME)
2392                 list(APPEND copy_data_files_depends
2393                         "${DATAFILE_DIR}/${_lua_filename}")
2394                 add_custom_command(OUTPUT "${DATAFILE_DIR}/${_lua_filename}"
2395                         COMMAND ${CMAKE_COMMAND} -E copy_if_different
2396                                 "${_lua_file}"
2397                                 "${DATAFILE_DIR}/${_lua_filename}"
2398                         DEPENDS
2399                                 "${_lua_file}"
2400                 )
2401         endforeach()
2402 endif(LUA_FOUND AND ENABLE_LUA)
2403 # doc/*.html handled elsewhere.
2404
2405 set(_protocol_data_dir ${CMAKE_SOURCE_DIR}/resources/protocols)
2406 # Glob patterns relative to the source directory that should be copied to
2407 # ${DATAFILE_DIR} (including directory prefixes)
2408 # TODO shouldn't this use full (relative) paths instead of glob patterns?
2409 set(DATA_FILES_SRC
2410         ${_protocol_data_dir}/tpncp/tpncp.dat
2411         ${_protocol_data_dir}/wimaxasncp/*.dtd
2412         ${_protocol_data_dir}/wimaxasncp/*.xml
2413 )
2414
2415 # Copy all paths from the source tree to the data directory. Directories are
2416 # automatically created if missing as the filename is given.
2417 file(GLOB _data_files RELATIVE ${_protocol_data_dir} ${DATA_FILES_SRC})
2418 foreach(_data_file ${_data_files})
2419         add_custom_command(OUTPUT "${DATAFILE_DIR}/${_data_file}"
2420                 COMMAND ${CMAKE_COMMAND} -E copy_if_different
2421                         ${_protocol_data_dir}/${_data_file}
2422                         ${DATAFILE_DIR}/${_data_file}
2423                 DEPENDS
2424                         ${_protocol_data_dir}/${_data_file}
2425         )
2426         list(APPEND copy_data_files_depends ${DATAFILE_DIR}/${_data_file})
2427 endforeach()
2428
2429 file(GLOB _dtds_src_files RELATIVE ${_protocol_data_dir} ${_protocol_data_dir}/dtds/*.dtd)
2430
2431 set (_dtds_data_files)
2432 set (_dtds_dep_files)
2433 foreach(_data_file ${_dtds_src_files})
2434         list(APPEND _dtds_data_files ${DATAFILE_DIR}/${_data_file})
2435         list(APPEND _dtds_dep_files ${_protocol_data_dir}/${_data_file})
2436 endforeach()
2437
2438 add_custom_command(
2439         OUTPUT ${_dtds_data_files}
2440         COMMAND ${CMAKE_COMMAND} -E make_directory ${DATAFILE_DIR}/dtds
2441         COMMAND ${CMAKE_COMMAND} -E copy_if_different
2442                 ${_dtds_src_files}
2443                 ${DATAFILE_DIR}/dtds
2444         VERBATIM
2445         DEPENDS ${_dtds_dep_files}
2446         WORKING_DIRECTORY ${_protocol_data_dir}
2447 )
2448
2449 file(GLOB _diameter_src_files RELATIVE ${_protocol_data_dir}
2450         ${_protocol_data_dir}/diameter/*.dtd
2451         ${_protocol_data_dir}/diameter/*.xml
2452 )
2453
2454 set (_diameter_data_files)
2455 set (_diameter_dep_files)
2456 foreach(_data_file ${_diameter_src_files})
2457         list(APPEND _diameter_data_files ${DATAFILE_DIR}/${_data_file})
2458         list(APPEND _diameter_dep_files ${_protocol_data_dir}/${_data_file})
2459 endforeach()
2460
2461 add_custom_command(
2462         OUTPUT ${_diameter_data_files}
2463         COMMAND ${CMAKE_COMMAND} -E make_directory ${DATAFILE_DIR}/diameter
2464         COMMAND ${CMAKE_COMMAND} -E copy_if_different
2465                 ${_diameter_src_files}
2466                 ${DATAFILE_DIR}/diameter
2467         VERBATIM
2468         DEPENDS ${_diameter_dep_files}
2469         WORKING_DIRECTORY ${_protocol_data_dir}
2470 )
2471
2472 file(GLOB _radius_src_files RELATIVE ${_protocol_data_dir}
2473         ${_protocol_data_dir}/radius/README.radius_dictionary
2474         ${_protocol_data_dir}/radius/custom.includes
2475         ${_protocol_data_dir}/radius/dictionary
2476         ${_protocol_data_dir}/radius/dictionary.*
2477 )
2478
2479 set (_radius_data_files)
2480 set (_radius_dep_files)
2481 foreach(_data_file ${_radius_src_files})
2482         list(APPEND _radius_data_files ${DATAFILE_DIR}/${_data_file})
2483         list(APPEND _radius_dep_files ${_protocol_data_dir}/${_data_file})
2484 endforeach()
2485
2486 add_custom_command(
2487         OUTPUT ${_radius_data_files}
2488         COMMAND ${CMAKE_COMMAND} -E make_directory ${DATAFILE_DIR}/radius
2489         COMMAND ${CMAKE_COMMAND} -E copy_if_different
2490                 ${_radius_src_files}
2491                 ${DATAFILE_DIR}/radius
2492         VERBATIM
2493         DEPENDS ${_radius_dep_files}
2494         WORKING_DIRECTORY ${_protocol_data_dir}
2495 )
2496
2497 file(GLOB _protobuf_src_files RELATIVE ${_protocol_data_dir}
2498         ${_protocol_data_dir}/protobuf/*.proto
2499 )
2500 set (_protobuf_data_files)
2501 set (_protobuf_dep_files)
2502 foreach(_data_file ${_protobuf_src_files})
2503         list(APPEND _protobuf_data_files ${DATAFILE_DIR}/${_data_file})
2504         list(APPEND _protobuf_dep_files ${_protocol_data_dir}/${_data_file})
2505 endforeach()
2506
2507 add_custom_command(
2508         OUTPUT ${_protobuf_data_files}
2509         COMMAND ${CMAKE_COMMAND} -E make_directory ${DATAFILE_DIR}/protobuf
2510         COMMAND ${CMAKE_COMMAND} -E copy_if_different
2511                 ${_protobuf_src_files}
2512                 ${DATAFILE_DIR}/protobuf
2513         VERBATIM
2514         DEPENDS ${_protobuf_dep_files}
2515         WORKING_DIRECTORY ${_protocol_data_dir}
2516 )
2517
2518 set(_profiles_src_dir ${CMAKE_SOURCE_DIR}/resources/share/wireshark)
2519 file(GLOB _profiles_src_files RELATIVE ${_profiles_src_dir} ${_profiles_src_dir}/profiles/*/*)
2520 set (_profiles_data_files)
2521 foreach(_data_file ${_profiles_src_files})
2522         list(APPEND _profiles_data_files "${DATAFILE_DIR}/${_data_file}")
2523 endforeach()
2524
2525 add_custom_command(
2526         OUTPUT ${_profiles_data_files}
2527         COMMAND ${CMAKE_COMMAND} -E copy_directory
2528                 "${CMAKE_SOURCE_DIR}/resources/share/wireshark/profiles" "${DATAFILE_DIR}/profiles"
2529 )
2530
2531 list(APPEND copy_data_files_depends
2532         ${_dtds_data_files}
2533         ${_diameter_data_files}
2534         ${_radius_data_files}
2535         ${_protobuf_data_files}
2536         ${_profiles_data_files}
2537 )
2538
2539 # Copy files including ${INSTALL_FILES} and ${INSTALL_DIRS} to ${DATAFILE_DIR}
2540 add_custom_target(copy_data_files ALL DEPENDS ${copy_data_files_depends} )
2541 set_target_properties(copy_data_files PROPERTIES FOLDER "Copy Tasks")
2542
2543 # sources common for wireshark, tshark, rawshark and sharkd
2544 add_library(shark_common OBJECT
2545         cfile.c
2546         extcap_parser.c
2547         file_packet_provider.c
2548         frame_tvbuff.c
2549         sync_pipe_write.c
2550 )
2551 add_library(cli_main OBJECT cli_main.c)
2552 add_library(capture_opts OBJECT capture_opts.c)
2553 target_include_directories(capture_opts SYSTEM PRIVATE ${PCAP_INCLUDE_DIRS})
2554 set_target_properties(shark_common cli_main capture_opts
2555         PROPERTIES
2556         COMPILE_FLAGS "${WERROR_COMMON_FLAGS}"
2557 )
2558
2559
2560 if(BUILD_wireshark AND QT_FOUND)
2561         set(WIRESHARK_SRC
2562                 file.c
2563                 fileset.c
2564                 extcap.c
2565                 ${PLATFORM_UI_SRC}
2566         )
2567         set(wireshark_FILES
2568                 $<TARGET_OBJECTS:capture_opts>
2569                 $<TARGET_OBJECTS:shark_common>
2570                 ${WIRESHARK_SRC}
2571                 ${PLATFORM_UI_RC_FILES}
2572         )
2573         set_executable_resources(wireshark "Wireshark" UNIQUE_RC)
2574 endif()
2575
2576 if(BUILD_logray AND QT_FOUND)
2577         set(LOGRAY_SRC
2578                 file.c
2579                 fileset.c
2580                 extcap.c
2581                 ${PLATFORM_UI_SRC}
2582         )
2583         set(logray_FILES
2584                 $<TARGET_OBJECTS:capture_opts>
2585                 $<TARGET_OBJECTS:shark_common>
2586                 ${LOGRAY_SRC}
2587                 ${PLATFORM_UI_RC_FILES}
2588         )
2589         set_executable_resources(logray "Logray" UNIQUE_RC)
2590 endif()
2591
2592 if(ENABLE_APPLICATION_BUNDLE)
2593         #
2594         # Add -Wl,-single_module to the LDFLAGS used with shared
2595         # libraries, to fix some error that show up in some cases;
2596         # some Apple documentation recommends it for most shared
2597         # libraries.
2598         #
2599         set( CMAKE_SHARED_LINKER_FLAGS "-Wl,-single_module ${CMAKE_SHARED_LINKER_FLAGS}" )
2600         #
2601         # Add -Wl,-headerpad_max_install_names to the LDFLAGS, as
2602         # code-signing issues is running out of padding space.
2603         #
2604         # Add -Wl,-search_paths_first to make sure that if we search
2605         # directories A and B, in that order, for a given library, a
2606         # non-shared version in directory A, rather than a shared
2607         # version in directory B, is chosen (so we can use
2608         # --with-pcap=/usr/local to force all programs to be linked
2609         # with a static version installed in /usr/local/lib rather than
2610         # the system version in /usr/lib).
2611         #
2612
2613         set(CMAKE_EXE_LINKER_FLAGS
2614         "-Wl,-headerpad_max_install_names -Wl,-search_paths_first ${CMAKE_EXE_LINKER_FLAGS}"
2615         )
2616
2617         # Add files to the Wireshark application bundle
2618         # Wireshark.app/Contents
2619         file(WRITE ${CMAKE_BINARY_DIR}/packaging/macosx/wireshark/PkgInfo "APPLWshk\n")
2620         set(WIRESHARK_BUNDLE_CONTENTS_FILES
2621                 ${CMAKE_BINARY_DIR}/packaging/macosx/wireshark/PkgInfo
2622         )
2623         set_source_files_properties(${WIRESHARK_BUNDLE_CONTENTS_FILES} PROPERTIES
2624                 MACOSX_PACKAGE_LOCATION .
2625         )
2626
2627         # Wireshark.app/Contents/Resources
2628         set(WIRESHARK_BUNDLE_RESOURCE_FILES
2629                 ${CMAKE_SOURCE_DIR}/packaging/macosx/Wireshark.icns
2630                 ${CMAKE_SOURCE_DIR}/packaging/macosx/Wiresharkdoc.icns
2631         )
2632         set_source_files_properties(${WIRESHARK_BUNDLE_RESOURCE_FILES} PROPERTIES
2633                 MACOSX_PACKAGE_LOCATION Resources
2634         )
2635
2636         # Wireshark.app/Contents/Resources/share/man/man1
2637         set_source_files_properties(${WIRESHARK_BUNDLE_RESOURCE_SHARE_MAN1_FILES} PROPERTIES
2638                 MACOSX_PACKAGE_LOCATION Resources/share/man/man1
2639                 GENERATED 1
2640         )
2641
2642         # Wireshark.app/Contents/Resources/share/man/man4
2643         set_source_files_properties(${WIRESHARK_BUNDLE_RESOURCE_SHARE_MAN4_FILES} PROPERTIES
2644                 MACOSX_PACKAGE_LOCATION Resources/share/man/man4
2645                 GENERATED 1
2646         )
2647
2648         # INSTALL_FILES and INSTALL_DIRS are handled by copy_data_files
2649
2650         set(EXTRA_WIRESHARK_BUNDLE_FILES
2651                 ${WIRESHARK_BUNDLE_CONTENTS_FILES}
2652                 ${WIRESHARK_BUNDLE_RESOURCE_FILES}
2653                 ${WIRESHARK_BUNDLE_RESOURCE_SHARE_MAN1_FILES}
2654                 ${WIRESHARK_BUNDLE_RESOURCE_SHARE_MAN4_FILES}
2655         )
2656
2657         # Add files to the Logray application bundle
2658         # Logray.app/Contents
2659         file(WRITE ${CMAKE_BINARY_DIR}/packaging/macosx/logray/PkgInfo "APPLLgry\n")
2660         set(LOGRAY_BUNDLE_CONTENTS_FILES
2661                 ${CMAKE_BINARY_DIR}/packaging/macosx/logray/PkgInfo
2662         )
2663         set_source_files_properties(${LOGRAY_BUNDLE_CONTENTS_FILES} PROPERTIES
2664                 MACOSX_PACKAGE_LOCATION .
2665         )
2666
2667         # Logray.app/Contents/Resources
2668         set(LOGRAY_BUNDLE_RESOURCE_FILES
2669                 ${CMAKE_SOURCE_DIR}/packaging/macosx/Logray.icns
2670                 ${CMAKE_SOURCE_DIR}/packaging/macosx/Wiresharkdoc.icns
2671         )
2672         set_source_files_properties(${LOGRAY_BUNDLE_RESOURCE_FILES} PROPERTIES
2673                 MACOSX_PACKAGE_LOCATION Resources
2674         )
2675
2676         # Logray.app/Contents/Resources/share/man/man1
2677         set_source_files_properties(${LOGRAY_BUNDLE_RESOURCE_SHARE_MAN1_FILES} PROPERTIES
2678                 MACOSX_PACKAGE_LOCATION Resources/share/man/man1
2679                 GENERATED 1
2680         )
2681
2682         # Logray.app/Contents/Resources/share/man/man4
2683         set_source_files_properties(${LOGRAY_BUNDLE_RESOURCE_SHARE_MAN4_FILES} PROPERTIES
2684                 MACOSX_PACKAGE_LOCATION Resources/share/man/man4
2685                 GENERATED 1
2686         )
2687
2688         # INSTALL_FILES and INSTALL_DIRS are handled by copy_data_files
2689
2690         set(EXTRA_LOGRAY_BUNDLE_FILES
2691                 ${LOGRAY_BUNDLE_CONTENTS_FILES}
2692                 ${LOGRAY_BUNDLE_RESOURCE_FILES}
2693                 ${LOGRAY_BUNDLE_RESOURCE_SHARE_MAN1_FILES}
2694                 ${LOGRAY_BUNDLE_RESOURCE_SHARE_MAN4_FILES}
2695         )
2696
2697 else()
2698         set(EXTRA_WIRESHARK_BUNDLE_FILES)
2699         set(EXTRA_LOGRAY_BUNDLE_FILES)
2700 endif()
2701
2702 if(BUILD_wireshark AND QT_FOUND)
2703         set(wireshark_LIBS
2704                 ui
2705                 qtui
2706                 capchild
2707                 caputils
2708                 iface_monitor
2709                 wiretap
2710                 epan
2711                 summary
2712                 ${QT5_LIBRARIES}
2713                 ${APPLE_APPLICATION_SERVICES_LIBRARY}
2714                 ${APPLE_APPKIT_LIBRARY}
2715                 ${APPLE_CORE_FOUNDATION_LIBRARY}
2716                 ${APPLE_SYSTEM_CONFIGURATION_LIBRARY}
2717                 ${SPARKLE_LIBRARIES}
2718                 ${WIN_WS2_32_LIBRARY}
2719                 ${WIN_VERSION_LIBRARY}
2720                 ${WINSPARKLE_LIBRARIES}
2721                 $<$<BOOL:${WIN32}>:uxtheme.lib>
2722                 ${SPEEXDSP_LIBRARIES}
2723                 ${ZLIB_LIBRARIES}
2724                 ${MINIZIP_LIBRARIES}
2725         )
2726
2727         add_executable(wireshark WIN32 MACOSX_BUNDLE ${wireshark_FILES} ${EXTRA_WIRESHARK_BUNDLE_FILES})
2728         if(MSVC)
2729                 set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT wireshark)
2730         endif()
2731         set(PROGLIST ${PROGLIST} wireshark)
2732         set_target_properties(wireshark PROPERTIES
2733                 LINK_FLAGS "${WS_LINK_FLAGS}"
2734                 FOLDER "Executables"
2735                 INSTALL_RPATH "${EXECUTABLE_INSTALL_RPATH}"
2736                 AUTOMOC ON
2737                 AUTOUIC ON
2738                 AUTORCC ON
2739         )
2740         if(MSVC)
2741                 set_target_properties(wireshark PROPERTIES LINK_FLAGS_DEBUG "${WS_MSVC_DEBUG_LINK_FLAGS}")
2742         endif()
2743         if (USE_MSYSTEM)
2744                 set_target_properties(wireshark PROPERTIES OUTPUT_NAME wireshark)
2745         elseif(ENABLE_APPLICATION_BUNDLE OR WIN32)
2746                 set_target_properties(wireshark PROPERTIES OUTPUT_NAME Wireshark)
2747         endif()
2748
2749         if(ENABLE_APPLICATION_BUNDLE)
2750                 if(ASCIIDOCTOR_FOUND)
2751                         # Make sure to generate files referenced by
2752                         # WIRESHARK_BUNDLE_RESOURCE_SHARE_MAN1_FILES
2753                         add_dependencies(wireshark manpages)
2754                 endif()
2755                 set_target_properties(
2756                         wireshark PROPERTIES
2757                                 MACOSX_BUNDLE_INFO_PLIST ${CMAKE_BINARY_DIR}/packaging/macosx/WiresharkInfo.plist
2758                 )
2759                 if(CMAKE_CFG_INTDIR STREQUAL ".")
2760                         # Add a wrapper script which opens the bundle. This is more convenient
2761                         # and lets Sparkle find our CFBundleIdentifier, but means that you have
2762                         # to pass the full path to run/Wireshark.app/Contents/MacOS/Wireshark
2763                         # to your debugger.
2764                         # It is not created if using Xcode
2765                         file(REMOVE ${CMAKE_BINARY_DIR}/run/wireshark)
2766                         file(WRITE ${CMAKE_BINARY_DIR}/run/wireshark "#!/bin/sh\n")
2767                         file(APPEND ${CMAKE_BINARY_DIR}/run/wireshark "# Generated by ${CMAKE_CURRENT_LIST_FILE}\n")
2768                         file(APPEND ${CMAKE_BINARY_DIR}/run/wireshark "# Wrapper script which ensures that we're properly activated via Launch Services\n")
2769                         file(APPEND ${CMAKE_BINARY_DIR}/run/wireshark "exec ${CMAKE_BINARY_DIR}/run/Wireshark.app/Contents/MacOS/Wireshark \"\$\@\"\n")
2770                         execute_process(COMMAND chmod a+x ${CMAKE_BINARY_DIR}/run/wireshark)
2771                 endif()
2772         endif()
2773
2774         target_link_libraries(wireshark ${wireshark_LIBS})
2775         target_include_directories(wireshark SYSTEM PRIVATE ${SPARKLE_INCLUDE_DIRS})
2776
2777         install(
2778                 TARGETS wireshark
2779                 RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
2780                 BUNDLE DESTINATION ${CMAKE_INSTALL_BINDIR}
2781         )
2782
2783         if(QT_WINDEPLOYQT_EXECUTABLE)
2784                 add_custom_target(copy_qt_dlls ALL)
2785                 set_target_properties(copy_qt_dlls PROPERTIES FOLDER "Copy Tasks")
2786                 # Will we ever need to use --debug? Windeployqt seems to
2787                 # be smart enough to copy debug DLLs when needed.
2788                 if (USE_MSYSTEM AND Qt${qtver}Widgets_VERSION VERSION_EQUAL 6.5.0)
2789                         # windeployqt released with Qt 6.5.0 is broken.
2790                         # https://bugreports.qt.io/browse/QTBUG-112204
2791                         message(WARNING "Qt Deploy Tool 6.5.0 is broken, please upgrade to a later version.")
2792                         # lconvert will fail
2793                 endif()
2794                 add_custom_command(TARGET copy_qt_dlls
2795                         POST_BUILD
2796                         COMMAND set "PATH=${QT_BIN_PATH};%PATH%"
2797                         COMMAND "${QT_WINDEPLOYQT_EXECUTABLE}"
2798                                 ${QT_WINDEPLOYQT_EXTRA_ARGS}
2799                                 --no-compiler-runtime
2800                                 --verbose 0
2801                                 $<$<BOOL:${MSVC}>:--pdb>
2802                                 "$<TARGET_FILE:wireshark>"
2803                 )
2804                 add_dependencies(copy_qt_dlls wireshark)
2805
2806                 install(CODE "execute_process(COMMAND
2807                         \"${QT_WINDEPLOYQT_EXECUTABLE}\"
2808                         --no-compiler-runtime
2809                         \"\${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_BINDIR}/Wireshark.exe\")"
2810                 )
2811
2812         endif(QT_WINDEPLOYQT_EXECUTABLE)
2813 endif()
2814
2815 if(BUILD_logray AND QT_FOUND)
2816         set(logray_LIBS
2817                 ui
2818                 ui_logray
2819                 capchild
2820                 caputils
2821                 iface_monitor
2822                 wiretap
2823                 epan
2824                 summary
2825                 ${QT5_LIBRARIES}
2826                 ${APPLE_APPLICATION_SERVICES_LIBRARY}
2827                 ${APPLE_APPKIT_LIBRARY}
2828                 ${APPLE_CORE_FOUNDATION_LIBRARY}
2829                 ${APPLE_SYSTEM_CONFIGURATION_LIBRARY}
2830                 ${SPARKLE_LIBRARIES}
2831                 ${WIN_WS2_32_LIBRARY}
2832                 ${WIN_VERSION_LIBRARY}
2833                 ${WINSPARKLE_LIBRARIES}
2834                 $<$<BOOL:${WIN32}>:uxtheme.lib>
2835                 ${SPEEXDSP_LIBRARIES}
2836                 ${ZLIB_LIBRARIES}
2837                 ${MINIZIP_LIBRARIES}
2838         )
2839
2840         add_executable(logray WIN32 MACOSX_BUNDLE ${logray_FILES} ${EXTRA_LOGRAY_BUNDLE_FILES})
2841         if(WIN32 AND NOT BUILD_wireshark)
2842                 set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT logray)
2843         endif()
2844         set(PROGLIST ${PROGLIST} logray)
2845         set_target_properties(logray PROPERTIES
2846                 LINK_FLAGS "${WS_LINK_FLAGS}"
2847                 FOLDER "Executables"
2848                 INSTALL_RPATH "${EXECUTABLE_INSTALL_RPATH}"
2849                 AUTOMOC ON
2850                 AUTOUIC ON
2851                 AUTORCC ON
2852         )
2853         if(MSVC)
2854                 set_target_properties(logray PROPERTIES LINK_FLAGS_DEBUG "${WS_MSVC_DEBUG_LINK_FLAGS}")
2855         endif()
2856         if(ENABLE_APPLICATION_BUNDLE OR WIN32)
2857                 set_target_properties(logray PROPERTIES OUTPUT_NAME Logray)
2858         endif()
2859
2860         if(ENABLE_APPLICATION_BUNDLE)
2861                 if(ASCIIDOCTOR_FOUND)
2862                         # Make sure to generate files referenced by
2863                         # LOGRAY_BUNDLE_RESOURCE_SHARE_MAN1_FILES
2864                         add_dependencies(logray manpages)
2865                 endif()
2866                 set_target_properties(
2867                         logray PROPERTIES
2868                                 MACOSX_BUNDLE_INFO_PLIST ${CMAKE_BINARY_DIR}/packaging/macosx/LograyInfo.plist
2869                 )
2870                 if(CMAKE_CFG_INTDIR STREQUAL ".")
2871                         # Add a wrapper script which opens the bundle. This is more convenient
2872                         # and lets Sparkle find our CFBundleIdentifier, but means that you have
2873                         # to pass the full path to run/Wireshark.app/Contents/MacOS/Logray
2874                         # to your debugger.
2875                         # It is not created if using Xcode
2876                         file(REMOVE ${CMAKE_BINARY_DIR}/run/logray)
2877                         file(WRITE ${CMAKE_BINARY_DIR}/run/logray "#!/bin/sh\n")
2878                         file(APPEND ${CMAKE_BINARY_DIR}/run/logray "# Generated by ${CMAKE_CURRENT_LIST_FILE}\n")
2879                         file(APPEND ${CMAKE_BINARY_DIR}/run/logray "# Wrapper script which ensures that we're properly activated via Launch Services\n")
2880                         file(APPEND ${CMAKE_BINARY_DIR}/run/logray "exec ${CMAKE_BINARY_DIR}/run/Logray.app/Contents/MacOS/Logray \"\$\@\"\n")
2881                         execute_process(COMMAND chmod a+x ${CMAKE_BINARY_DIR}/run/logray)
2882                 endif()
2883         endif()
2884
2885         target_link_libraries(logray ${logray_LIBS})
2886         target_include_directories(logray SYSTEM PRIVATE ${SPARKLE_INCLUDE_DIRS})
2887
2888         install(
2889                 TARGETS logray
2890                 RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
2891                 BUNDLE DESTINATION ${CMAKE_INSTALL_BINDIR}
2892         )
2893
2894         if(QT_WINDEPLOYQT_EXECUTABLE)
2895                 add_custom_target(copy_ls_qt_dlls ALL)
2896                 set_target_properties(copy_ls_qt_dlls PROPERTIES FOLDER "Copy Tasks")
2897                 # Will we ever need to use --debug? Windeployqt seems to
2898                 # be smart enough to copy debug DLLs when needed.
2899                 add_custom_command(TARGET copy_ls_qt_dlls
2900                         POST_BUILD
2901                         COMMAND set "PATH=${QT_BIN_PATH};%PATH%"
2902                         COMMAND "${QT_WINDEPLOYQT_EXECUTABLE}"
2903                                 --no-compiler-runtime
2904                                 --verbose 0
2905                                 $<$<BOOL:${MSVC}>:--pdb>
2906                                 "$<TARGET_FILE:logray>"
2907                 )
2908                 add_dependencies(copy_ls_qt_dlls logray)
2909
2910                 install(CODE "execute_process(COMMAND
2911                         \"${QT_WINDEPLOYQT_EXECUTABLE}\"
2912                         --no-compiler-runtime
2913                         \"\${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_BINDIR}/Logray.exe\")"
2914                 )
2915
2916         endif(QT_WINDEPLOYQT_EXECUTABLE)
2917 endif()
2918
2919 if (BUILD_logray AND FALCO_PLUGINS)
2920         add_custom_target(copy_falco_plugins)
2921         add_custom_command(TARGET copy_falco_plugins
2922                 COMMAND ${CMAKE_COMMAND} -E make_directory ${LOGRAY_PLUGIN_DIR}/falco
2923                 COMMAND ${CMAKE_COMMAND} -E copy_if_different ${FALCO_PLUGINS} ${LOGRAY_PLUGIN_DIR}/falco
2924                 VERBATIM
2925         )
2926         add_dependencies(logray copy_falco_plugins)
2927 endif()
2928
2929 # Common properties for CLI executables
2930 macro(set_extra_executable_properties _executable _folder)
2931         set_target_properties(${_executable} PROPERTIES
2932                 LINK_FLAGS "${WILDCARD_OBJ} ${WS_LINK_FLAGS}"
2933                 FOLDER ${_folder}
2934                 INSTALL_RPATH "${EXECUTABLE_INSTALL_RPATH}"
2935         )
2936         if(MSVC)
2937                 set_target_properties(${_executable} PROPERTIES LINK_FLAGS_DEBUG "${WS_MSVC_DEBUG_LINK_FLAGS}")
2938         endif()
2939
2940         set(PROGLIST ${PROGLIST} ${_executable})
2941
2942         if(ENABLE_APPLICATION_BUNDLE)
2943                 if(NOT CMAKE_CFG_INTDIR STREQUAL ".")
2944                         # Xcode
2945                         set_target_properties(${_executable} PROPERTIES
2946                                 RUNTIME_OUTPUT_DIRECTORY run/$<CONFIG>/Wireshark.app/Contents/MacOS
2947                         )
2948                 else ()
2949                         set_target_properties(${_executable} PROPERTIES
2950                                 RUNTIME_OUTPUT_DIRECTORY run/Wireshark.app/Contents/MacOS
2951                         )
2952                         # Create a convenience link from run/<name> to its respective
2953                         # target in the application bundle.
2954                         add_custom_target(${_executable}-symlink
2955                                 COMMAND ln -s -f
2956                                         Wireshark.app/Contents/MacOS/${_executable}
2957                                         ${CMAKE_BINARY_DIR}/run/${_executable}
2958                         )
2959                         add_dependencies(${_executable} ${_executable}-symlink)
2960                 endif()
2961         endif()
2962 endmacro()
2963
2964 macro(executable_link_mingw_unicode _target)
2965         # target_link_options() requires CMake >= 3.13
2966         if (MINGW)
2967                 target_link_options(${_target} PRIVATE "-municode")
2968         endif()
2969 endmacro()
2970
2971 register_tap_files(tshark-tap-register.c
2972         ${TSHARK_TAP_SRC}
2973 )
2974
2975 if(BUILD_tshark)
2976         set(tshark_LIBS
2977                 ui
2978                 capchild
2979                 caputils
2980                 wiretap
2981                 epan
2982                 wsutil
2983                 ${APPLE_CORE_FOUNDATION_LIBRARY}
2984                 ${APPLE_SYSTEM_CONFIGURATION_LIBRARY}
2985                 ${WIN_WS2_32_LIBRARY}
2986                 ${M_LIBRARIES}
2987         )
2988         set(tshark_FILES
2989                 $<TARGET_OBJECTS:capture_opts>
2990                 $<TARGET_OBJECTS:cli_main>
2991                 $<TARGET_OBJECTS:shark_common>
2992                 tshark-tap-register.c
2993                 tshark.c
2994                 extcap.c
2995                 ${TSHARK_TAP_SRC}
2996         )
2997
2998         set_executable_resources(tshark "TShark" UNIQUE_RC)
2999         add_executable(tshark ${tshark_FILES})
3000         set_extra_executable_properties(tshark "Executables")
3001         target_link_libraries(tshark ${tshark_LIBS})
3002         executable_link_mingw_unicode(tshark)
3003         install(TARGETS tshark RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
3004 endif()
3005
3006 if(BUILD_tfshark)
3007         set(tfshark_LIBS
3008                 m
3009                 ui
3010                 wiretap
3011                 epan
3012                 ${APPLE_CORE_FOUNDATION_LIBRARY}
3013                 ${APPLE_SYSTEM_CONFIGURATION_LIBRARY}
3014         )
3015         set(tfshark_FILES
3016                 $<TARGET_OBJECTS:cli_main>
3017                 $<TARGET_OBJECTS:shark_common>
3018                 tfshark.c
3019                 ${TSHARK_TAP_SRC}
3020         )
3021         set_executable_resources(tfshark "TFShark")
3022         add_executable(tfshark ${tfshark_FILES})
3023         set_extra_executable_properties(tfshark "Executables")
3024         target_link_libraries(tfshark ${tfshark_LIBS})
3025         install(TARGETS tfshark RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
3026 endif()
3027
3028 if(BUILD_rawshark AND PCAP_FOUND)
3029         set(rawshark_LIBS
3030                 caputils
3031                 ui
3032                 wiretap
3033                 epan
3034                 ${APPLE_CORE_FOUNDATION_LIBRARY}
3035                 ${APPLE_SYSTEM_CONFIGURATION_LIBRARY}
3036                 ${WIN_WS2_32_LIBRARY}
3037         )
3038         set(rawshark_FILES
3039                 $<TARGET_OBJECTS:cli_main>
3040                 $<TARGET_OBJECTS:shark_common>
3041                 rawshark.c
3042         )
3043         set_executable_resources(rawshark "Rawshark")
3044         add_executable(rawshark ${rawshark_FILES})
3045         set_extra_executable_properties(rawshark "Executables")
3046         target_link_libraries(rawshark ${rawshark_LIBS})
3047         executable_link_mingw_unicode(rawshark)
3048         install(TARGETS rawshark RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
3049 endif()
3050
3051 if(BUILD_sharkd)
3052         set(sharkd_LIBS
3053                 ui
3054                 wiretap
3055                 epan
3056                 ${APPLE_CORE_FOUNDATION_LIBRARY}
3057                 ${APPLE_SYSTEM_CONFIGURATION_LIBRARY}
3058                 ${WIN_WS2_32_LIBRARY}
3059                 ${SPEEXDSP_LIBRARIES}
3060                 ${M_LIBRARIES}
3061         )
3062         set(sharkd_FILES
3063                 #
3064                 # XXX - currently doesn't work on Windows if it uses
3065                 # $<TARGET_OBJECTS:cli_main> and has real_main().
3066                 #
3067                 $<TARGET_OBJECTS:shark_common>
3068                 ui/cli/simple_dialog.c
3069                 sharkd.c
3070                 sharkd_daemon.c
3071                 sharkd_session.c
3072                 ${TSHARK_TAP_SRC}
3073         )
3074         set_executable_resources(sharkd "SharkD")
3075         add_executable(sharkd ${sharkd_FILES})
3076         set_extra_executable_properties(sharkd "Executables")
3077         target_link_libraries(sharkd ${sharkd_LIBS})
3078         target_include_directories(sharkd SYSTEM PUBLIC ${SPEEXDSP_INCLUDE_DIRS})
3079
3080         install(TARGETS sharkd RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
3081 endif()
3082
3083 if(BUILD_dftest)
3084         set(dftest_LIBS
3085                 ui
3086                 wiretap
3087                 epan
3088         )
3089         set(dftest_FILES
3090                 dftest.c
3091         )
3092         set_executable_resources(dftest "Dftest")
3093         add_executable(dftest ${dftest_FILES})
3094         set_extra_executable_properties(dftest "Tests")
3095         target_link_libraries(dftest ${dftest_LIBS})
3096 endif()
3097
3098 if(BUILD_randpkt)
3099         set(randpkt_LIBS
3100                 randpkt_core
3101                 ui
3102                 wiretap
3103                 wsutil
3104         )
3105         set(randpkt_FILES
3106                 $<TARGET_OBJECTS:cli_main>
3107                 randpkt.c
3108         )
3109         set_executable_resources(randpkt "Randpkt"
3110                 COPYRIGHT_INFO "Copyright (C) 1999 by Gilbert Ramirez <gram@alumni.rice.edu>")
3111         add_executable(randpkt ${randpkt_FILES})
3112         set_extra_executable_properties(randpkt "Executables")
3113         target_link_libraries(randpkt ${randpkt_LIBS})
3114         executable_link_mingw_unicode(randpkt)
3115         install(TARGETS randpkt RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
3116 endif()
3117
3118 if(BUILD_fuzzshark OR ENABLE_FUZZER OR OSS_FUZZ)
3119         add_subdirectory(fuzz)
3120 endif()
3121
3122 if(BUILD_text2pcap)
3123         set(text2pcap_LIBS
3124                 wiretap
3125                 wsutil
3126                 ui
3127                 epan
3128                 ${ZLIB_LIBRARIES}
3129         )
3130         set(text2pcap_FILES
3131                 $<TARGET_OBJECTS:cli_main>
3132                 text2pcap.c
3133         )
3134         set_executable_resources(text2pcap "Text2pcap"
3135                 COPYRIGHT_INFO "2001 Ashok Narayanan <ashokn@cisco.com>")
3136         add_executable(text2pcap ${text2pcap_FILES})
3137         set_extra_executable_properties(text2pcap "Executables")
3138         target_link_libraries(text2pcap ${text2pcap_LIBS})
3139         executable_link_mingw_unicode(text2pcap)
3140         install(TARGETS text2pcap RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
3141 endif()
3142
3143 if(BUILD_mergecap)
3144         set(mergecap_LIBS
3145                 ui
3146                 wiretap
3147                 ${ZLIB_LIBRARIES}
3148                 ${CMAKE_DL_LIBS}
3149         )
3150         set(mergecap_FILES
3151                 $<TARGET_OBJECTS:cli_main>
3152                 mergecap.c
3153         )
3154         set_executable_resources(mergecap "Mergecap")
3155         add_executable(mergecap ${mergecap_FILES})
3156         set_extra_executable_properties(mergecap "Executables")
3157         target_link_libraries(mergecap ${mergecap_LIBS})
3158         executable_link_mingw_unicode(mergecap)
3159         install(TARGETS mergecap RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
3160 endif()
3161
3162 if(BUILD_reordercap)
3163         set(reordercap_LIBS
3164                 ui
3165                 wiretap
3166                 ${ZLIB_LIBRARIES}
3167                 ${CMAKE_DL_LIBS}
3168         )
3169         set(reordercap_FILES
3170                 $<TARGET_OBJECTS:cli_main>
3171                 reordercap.c
3172         )
3173         set_executable_resources(reordercap "Reordercap")
3174         add_executable(reordercap ${reordercap_FILES})
3175         set_extra_executable_properties(reordercap "Executables")
3176         target_link_libraries(reordercap ${reordercap_LIBS})
3177         executable_link_mingw_unicode(reordercap)
3178         install(TARGETS reordercap RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
3179 endif()
3180
3181 if(BUILD_capinfos)
3182         set(capinfos_LIBS
3183                 ui
3184                 wiretap
3185                 wsutil
3186                 ${ZLIB_LIBRARIES}
3187                 ${GCRYPT_LIBRARIES}
3188                 ${CMAKE_DL_LIBS}
3189         )
3190         set(capinfos_FILES
3191                 $<TARGET_OBJECTS:cli_main>
3192                 capinfos.c
3193         )
3194         set_executable_resources(capinfos "Capinfos")
3195         add_executable(capinfos ${capinfos_FILES})
3196         set_extra_executable_properties(capinfos "Executables")
3197         target_link_libraries(capinfos ${capinfos_LIBS})
3198         target_include_directories(capinfos SYSTEM PRIVATE ${GCRYPT_INCLUDE_DIRS})
3199         executable_link_mingw_unicode(capinfos)
3200         install(TARGETS capinfos RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
3201 endif()
3202
3203 if(BUILD_captype)
3204         set(captype_LIBS
3205                 ui
3206                 wiretap
3207                 wsutil
3208                 ${ZLIB_LIBRARIES}
3209                 ${CMAKE_DL_LIBS}
3210         )
3211         set(captype_FILES
3212                 $<TARGET_OBJECTS:cli_main>
3213                 captype.c
3214         )
3215         set_executable_resources(captype "Captype")
3216         add_executable(captype ${captype_FILES})
3217         set_extra_executable_properties(captype "Executables")
3218         target_link_libraries(captype ${captype_LIBS})
3219         executable_link_mingw_unicode(captype)
3220         install(TARGETS captype RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
3221 endif()
3222
3223 if(BUILD_editcap)
3224         set(editcap_LIBS
3225                 ui
3226                 wiretap
3227                 ${ZLIB_LIBRARIES}
3228                 ${GCRYPT_LIBRARIES}
3229                 ${CMAKE_DL_LIBS}
3230         )
3231         set(editcap_FILES
3232                 $<TARGET_OBJECTS:cli_main>
3233                 editcap.c
3234         )
3235         set_executable_resources(editcap "Editcap")
3236         add_executable(editcap ${editcap_FILES})
3237         set_extra_executable_properties(editcap "Executables")
3238         target_link_libraries(editcap ${editcap_LIBS})
3239         target_include_directories(editcap SYSTEM PRIVATE ${GCRYPT_INCLUDE_DIRS})
3240         executable_link_mingw_unicode(editcap)
3241         install(TARGETS editcap RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
3242 endif()
3243
3244 if(BUILD_dumpcap AND PCAP_FOUND)
3245         set(dumpcap_LIBS
3246                 writecap
3247                 wsutil_static
3248                 pcap::pcap
3249                 ${CAP_LIBRARIES}
3250                 ${ZLIB_LIBRARIES}
3251                 ${NL_LIBRARIES}
3252                 ${APPLE_CORE_FOUNDATION_LIBRARY}
3253                 ${APPLE_SYSTEM_CONFIGURATION_LIBRARY}
3254                 ${WIN_WS2_32_LIBRARY}
3255         )
3256         if(UNIX)
3257                 list(APPEND CAPUTILS_SRC
3258                         capture/capture-pcap-util-unix.c)
3259         endif()
3260         if(WIN32)
3261                 list(APPEND CAPUTILS_SRC
3262                         capture/capture_win_ifnames.c
3263                         capture/capture-wpcap.c
3264                 )
3265         endif()
3266         list(APPEND CAPUTILS_SRC
3267                 capture/capture-pcap-util.c
3268         )
3269         if (AIRPCAP_FOUND)
3270                 list(APPEND CAPUTILS_SRC capture/airpcap_loader.c)
3271         endif()
3272         set(dumpcap_FILES
3273                 capture_opts.c
3274                 cli_main.c
3275                 dumpcap.c
3276                 ringbuffer.c
3277                 sync_pipe_write.c
3278                 capture/iface_monitor.c
3279                 capture/ws80211_utils.c
3280                 ${CAPUTILS_SRC}
3281         )
3282         set_executable_resources(dumpcap "Dumpcap" UNIQUE_RC)
3283         add_executable(dumpcap ${dumpcap_FILES})
3284         set_extra_executable_properties(dumpcap "Executables")
3285         target_link_libraries(dumpcap ${dumpcap_LIBS})
3286         target_include_directories(dumpcap SYSTEM PRIVATE ${ZLIB_INCLUDE_DIRS} ${NL_INCLUDE_DIRS})
3287         target_compile_definitions(dumpcap PRIVATE ENABLE_STATIC)
3288         executable_link_mingw_unicode(dumpcap)
3289         install(TARGETS dumpcap
3290                         RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
3291                         PERMISSIONS ${DUMPCAP_SETUID}
3292                                 OWNER_READ OWNER_WRITE OWNER_EXECUTE
3293                                 GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
3294         )
3295         if(ENABLE_DUMPCAP_GROUP)
3296                 install(CODE "execute_process(COMMAND chgrp ${DUMPCAP_INSTALL_GROUP} ${CMAKE_INSTALL_FULL_BINDIR}/dumpcap)")
3297                 install(CODE "execute_process(COMMAND chmod o-x ${CMAKE_INSTALL_FULL_BINDIR}/dumpcap)")
3298         endif()
3299         if(DUMPCAP_INSTALL_OPTION STREQUAL "capabilities")
3300                 install( CODE "execute_process(
3301                         COMMAND
3302                                 ${SETCAP_EXECUTABLE}
3303                                 cap_net_raw,cap_net_admin+ep
3304                                 ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_BINDIR}/dumpcap${CMAKE_EXECUTABLE_SUFFIX}
3305                         RESULT_VARIABLE
3306                                 _SETCAP_RESULT
3307                         )
3308                         if( _SETCAP_RESULT )
3309                                 message( WARNING \"setcap failed (${_SETCAP_RESULT}).\")
3310                         endif()"
3311                 )
3312         endif()
3313         if(BUILD_logray AND ENABLE_APPLICATION_BUNDLE)
3314                 add_custom_command(TARGET dumpcap POST_BUILD
3315                         COMMAND ${CMAKE_COMMAND} -E copy_if_different
3316                                 $<TARGET_FILE:dumpcap> run/Logray.app/Contents/MacOS/dumpcap
3317                 )
3318         endif()
3319 elseif(BUILD_dumpcap AND ENABLE_PCAP)
3320         message(WARNING "Dumpcap was requested but libpcap dependency is not available. "
3321                 "Wireshark will be built without packet capture capability.")
3322 endif()
3323
3324 # We have two idl2wrs utilities: this and the CORBA version in tools.
3325 # We probably shouldn't do that.
3326 if(BUILD_dcerpcidl2wrs)
3327         set(idl2wrs_LIBS
3328                 wsutil
3329         )
3330         set(idl2wrs_FILES
3331                 epan/dissectors/dcerpc/idl2wrs.c
3332         )
3333
3334         add_executable(idl2wrs ${idl2wrs_FILES})
3335         set_target_properties(idl2wrs PROPERTIES FOLDER "Executables")
3336         set_extra_executable_properties(idl2wrs "Executables")
3337         target_link_libraries(idl2wrs ${idl2wrs_LIBS})
3338         install(TARGETS idl2wrs RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
3339 endif()
3340
3341 if(WIN32)
3342         find_package( MSVC_REDIST )
3343
3344         # Must come after executable targets are defined.
3345         find_package( NSIS )
3346
3347         if(MAKENSIS_EXECUTABLE)
3348                 add_subdirectory( packaging/nsis EXCLUDE_FROM_ALL )
3349                 ADD_NSIS_UNINSTALLER_TARGETS()
3350                 ADD_NSIS_PACKAGE_TARGETS()
3351         endif()
3352
3353         find_package( WiX )
3354
3355         if(WIX_CANDLE_EXECUTABLE)
3356                 add_subdirectory( packaging/wix EXCLUDE_FROM_ALL )
3357                 ADD_WIX_PACKAGE_TARGET()
3358         endif()
3359
3360         find_package( PortableApps )
3361         if(PORTABLEAPPS_LAUNCHER_GENERATOR_EXECUTABLE AND PORTABLEAPPS_INSTALLER_EXECUTABLE)
3362                 add_subdirectory( packaging/portableapps EXCLUDE_FROM_ALL )
3363                 ADD_PORTABLEAPPS_PACKAGE_TARGET()
3364         endif()
3365 endif()
3366
3367 if (MAXMINDDB_FOUND)
3368         set(mmdbresolve_LIBS
3369                 # Note: libmaxminddb is not GPL-2 compatible.
3370                 ${MAXMINDDB_LIBRARY}
3371                 # Needed for CMake-built libmaxminddb.lib <= 1.43.
3372                 ${WIN_WS2_32_LIBRARY}
3373         )
3374         set(mmdbresolve_FILES
3375                 mmdbresolve.c
3376         )
3377         set_executable_resources(mmdbresolve "Mmdbresolve")
3378         add_executable(mmdbresolve ${mmdbresolve_FILES})
3379         set_extra_executable_properties(mmdbresolve "Executables")
3380         target_link_libraries(mmdbresolve ${mmdbresolve_LIBS})
3381         target_include_directories(mmdbresolve PUBLIC ${MAXMINDDB_INCLUDE_DIRS})
3382         target_compile_definitions(mmdbresolve PUBLIC ${MAXMINDDB_DEFINITIONS})
3383         install(TARGETS mmdbresolve RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
3384 endif()
3385
3386 if(ENABLE_APPLICATION_BUNDLE AND BUILD_wireshark)
3387         file(MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/run/${CMAKE_CFG_INTDIR}/Wireshark.app/Contents/Resources/Extras")
3388
3389         # --preserve-xattr is undocumented but ensures that we install
3390         # a signed ChmodBPF script.
3391         set (_chmodbpf_version 1.2)
3392         set (install_chmodbpf_component_pkg "${CMAKE_BINARY_DIR}/install.ChmodBPF.pkg")
3393         add_custom_command(OUTPUT "${install_chmodbpf_component_pkg}"
3394                 COMMAND find
3395                         "${CMAKE_SOURCE_DIR}/packaging/macosx/ChmodBPF/root"
3396                         -type d
3397                         -exec chmod 755 "{}" +
3398                 COMMAND chmod 644
3399                         "${CMAKE_SOURCE_DIR}/packaging/macosx/ChmodBPF/root/Library/LaunchDaemons/org.wireshark.ChmodBPF.plist"
3400                 COMMAND chmod 755
3401                         "${CMAKE_SOURCE_DIR}/packaging/macosx/ChmodBPF/root/Library/Application Support/Wireshark/ChmodBPF/ChmodBPF"
3402                 COMMAND "${CMAKE_SOURCE_DIR}/packaging/macosx/osx-extras.sh"
3403                 COMMAND pkgbuild
3404                         --identifier org.wireshark.ChmodBPF.pkg
3405                         --version ${_chmodbpf_version}
3406                         --preserve-xattr
3407                         --root "${CMAKE_SOURCE_DIR}/packaging/macosx/ChmodBPF/root"
3408                         --scripts "${CMAKE_SOURCE_DIR}/packaging/macosx/ChmodBPF/install-scripts"
3409                         ${install_chmodbpf_component_pkg}
3410                 DEPENDS
3411                         "${CMAKE_SOURCE_DIR}/packaging/macosx/ChmodBPF/root/Library/Application Support/Wireshark/ChmodBPF/ChmodBPF"
3412                         "${CMAKE_SOURCE_DIR}/packaging/macosx/ChmodBPF/root/Library/LaunchDaemons/org.wireshark.ChmodBPF.plist"
3413                         "${CMAKE_SOURCE_DIR}/packaging/macosx/ChmodBPF/install-scripts/postinstall"
3414         )
3415         set (install_chmodbpf_pkg "${CMAKE_BINARY_DIR}/run/Wireshark.app/Contents/Resources/Extras/Install ChmodBPF.pkg")
3416         add_custom_command(OUTPUT "${install_chmodbpf_pkg}"
3417                 COMMAND productbuild
3418                         --identifier org.wireshark.install.ChmodBPF.product
3419                         --version ${_chmodbpf_version}
3420                         --distribution "${CMAKE_SOURCE_DIR}/packaging/macosx/ChmodBPF/install-distribution.xml"
3421                         --package-path "${CMAKE_BINARY_DIR}"
3422                         ${install_chmodbpf_pkg}
3423                 DEPENDS
3424                         "${CMAKE_SOURCE_DIR}/packaging/macosx/ChmodBPF/install-distribution.xml"
3425                         ${install_chmodbpf_component_pkg}
3426         )
3427
3428         set (uninstall_chmodbpf_component_pkg "${CMAKE_BINARY_DIR}/uninstall.ChmodBPF.pkg")
3429         add_custom_command(OUTPUT "${uninstall_chmodbpf_component_pkg}"
3430                 COMMAND pkgbuild
3431                         --identifier org.wireshark.uninstall.ChmodBPF.pkg
3432                         --version ${_chmodbpf_version}
3433                         --nopayload
3434                         --scripts "${CMAKE_SOURCE_DIR}/packaging/macosx/ChmodBPF/uninstall-scripts"
3435                         ${uninstall_chmodbpf_component_pkg}
3436                 DEPENDS
3437                         "${CMAKE_SOURCE_DIR}/packaging/macosx/ChmodBPF/uninstall-scripts/postinstall"
3438         )
3439         set (uninstall_chmodbpf_pkg "${CMAKE_BINARY_DIR}/run/Wireshark.app/Contents/Resources/Extras/Uninstall ChmodBPF.pkg")
3440         add_custom_command(OUTPUT "${uninstall_chmodbpf_pkg}"
3441                 COMMAND productbuild
3442                         --identifier org.wireshark.uninstall.ChmodBPF.product
3443                         --version ${_chmodbpf_version}
3444                         --distribution "${CMAKE_SOURCE_DIR}/packaging/macosx/ChmodBPF/uninstall-distribution.xml"
3445                         --package-path "${CMAKE_BINARY_DIR}"
3446                         ${uninstall_chmodbpf_pkg}
3447                 DEPENDS
3448                         "${CMAKE_SOURCE_DIR}/packaging/macosx/ChmodBPF/uninstall-distribution.xml"
3449                         ${uninstall_chmodbpf_component_pkg}
3450         )
3451
3452         add_custom_target(chmodbpf DEPENDS ${install_chmodbpf_pkg} ${uninstall_chmodbpf_pkg})
3453
3454         set (_path_helper_version 1.1)
3455         set (install_path_helper_component_pkg "${CMAKE_BINARY_DIR}/install.path_helper.pkg")
3456         add_custom_command(OUTPUT "${install_path_helper_component_pkg}"
3457                 COMMAND find
3458                         "${CMAKE_SOURCE_DIR}/packaging/macosx/path_helper/root"
3459                         -type d
3460                         -exec chmod 755 "{}" +
3461                 COMMAND find
3462                         "${CMAKE_SOURCE_DIR}/packaging/macosx/path_helper/root"
3463                         -type f
3464                         -exec chmod 644 "{}" +
3465                 COMMAND pkgbuild
3466                         --identifier org.wireshark.path_helper.pkg
3467                         --version ${_path_helper_version}
3468                         --root "${CMAKE_SOURCE_DIR}/packaging/macosx/path_helper/root/etc"
3469                         --install-location /private/etc
3470                         ${install_path_helper_component_pkg}
3471                 DEPENDS
3472                         "${CMAKE_SOURCE_DIR}/packaging/macosx/path_helper/root/etc/paths.d/Wireshark"
3473                         "${CMAKE_SOURCE_DIR}/packaging/macosx/path_helper/root/etc/manpaths.d/Wireshark"
3474         )
3475         set (install_path_helper_pkg "${CMAKE_BINARY_DIR}/run/Wireshark.app/Contents/Resources/Extras/Add Wireshark to the system path.pkg")
3476         add_custom_command(OUTPUT "${install_path_helper_pkg}"
3477                 COMMAND productbuild
3478                         --identifier org.wireshark.install.path_helper.product
3479                         --version ${_path_helper_version}
3480                         --distribution "${CMAKE_SOURCE_DIR}/packaging/macosx/path_helper/install-distribution.xml"
3481                         --package-path "${CMAKE_BINARY_DIR}"
3482                         ${install_path_helper_pkg}
3483                 DEPENDS
3484                         "${CMAKE_SOURCE_DIR}/packaging/macosx/path_helper/install-distribution.xml"
3485                         ${install_path_helper_component_pkg}
3486         )
3487
3488         set (uninstall_path_helper_component_pkg "${CMAKE_BINARY_DIR}/uninstall.path_helper.pkg")
3489         add_custom_command(OUTPUT "${uninstall_path_helper_component_pkg}"
3490                 COMMAND pkgbuild
3491                         --identifier org.wireshark.uninstall.path_helper.pkg
3492                         --version ${_path_helper_version}
3493                         --nopayload
3494                         --scripts "${CMAKE_SOURCE_DIR}/packaging/macosx/path_helper/uninstall-scripts"
3495                         ${uninstall_path_helper_component_pkg}
3496                 DEPENDS
3497                         "${CMAKE_SOURCE_DIR}/packaging/macosx/path_helper/uninstall-scripts/postinstall"
3498         )
3499         set (uninstall_path_helper_pkg "${CMAKE_BINARY_DIR}/run/Wireshark.app/Contents/Resources/Extras/Remove Wireshark from the system path.pkg")
3500         add_custom_command(OUTPUT "${uninstall_path_helper_pkg}"
3501                 COMMAND productbuild
3502                         --identifier org.wireshark.uninstall.path_helper.product
3503                         --version ${_path_helper_version}
3504                         --distribution "${CMAKE_SOURCE_DIR}/packaging/macosx/path_helper/uninstall-distribution.xml"
3505                         --package-path "${CMAKE_BINARY_DIR}"
3506                         ${uninstall_path_helper_pkg}
3507                 DEPENDS
3508                         ${CMAKE_SOURCE_DIR}/packaging/macosx/path_helper/uninstall-distribution.xml
3509                         ${uninstall_path_helper_component_pkg}
3510         )
3511
3512         add_custom_target(path_helper DEPENDS ${install_path_helper_pkg} ${uninstall_path_helper_pkg})
3513
3514         add_custom_target(wireshark_app_bundle)
3515         set_target_properties(wireshark_app_bundle PROPERTIES FOLDER "Copy Tasks")
3516         add_custom_command(TARGET wireshark_app_bundle
3517                 POST_BUILD
3518                 COMMAND "${CMAKE_BINARY_DIR}/packaging/macosx/osx-app.sh"
3519                 WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/run"
3520         )
3521         add_dependencies(wireshark_app_bundle ${PROGLIST} chmodbpf path_helper)
3522
3523         add_custom_target(wireshark_dmg_prep DEPENDS wireshark_app_bundle)
3524
3525         FILE(MAKE_DIRECTORY packaging/macosx/wireshark)
3526
3527         set(_wireshark_read_me_first "packaging/macosx/wireshark/Read me first.html")
3528         ADD_CUSTOM_COMMAND(
3529         OUTPUT
3530                 ${_wireshark_read_me_first}
3531         COMMAND ${ASCIIDOCTOR_EXECUTABLE}
3532                 --backend html
3533                 --out-file ${_wireshark_read_me_first}
3534                 --attribute include-dir=${CMAKE_SOURCE_DIR}/docbook
3535                 --attribute min-macos-version=${MIN_MACOS_VERSION}
3536                 ${CMAKE_CURRENT_SOURCE_DIR}/packaging/macosx/Wireshark_read_me_first.adoc
3537         DEPENDS
3538                 ${CMAKE_CURRENT_SOURCE_DIR}/packaging/macosx/Wireshark_read_me_first.adoc
3539         )
3540
3541         set(_wireshark_donate "packaging/macosx/wireshark/Donate to the Wireshark Foundation.html")
3542         ADD_CUSTOM_COMMAND(
3543         OUTPUT
3544                 ${_wireshark_donate}
3545         COMMAND ${ASCIIDOCTOR_EXECUTABLE}
3546                 --backend html
3547                 --out-file ${_wireshark_donate}
3548                 --attribute include-dir=${CMAKE_SOURCE_DIR}/docbook
3549                 --attribute min-macos-version=${MIN_MACOS_VERSION}
3550                 ${CMAKE_CURRENT_SOURCE_DIR}/packaging/macosx/Donate_to_the_Wireshark_Foundation.adoc
3551         DEPENDS
3552                 ${CMAKE_CURRENT_SOURCE_DIR}/packaging/macosx/Donate_to_the_Wireshark_Foundation.adoc
3553         )
3554
3555         set(_wireshark_dsym_installation "packaging/macosx/wireshark/Debugging symbols installation.html")
3556         ADD_CUSTOM_COMMAND(
3557         OUTPUT
3558                 ${_wireshark_dsym_installation}
3559         COMMAND ${ASCIIDOCTOR_EXECUTABLE}
3560                 --backend html
3561                 --out-file ${_wireshark_dsym_installation}
3562                 --attribute include-dir=${CMAKE_SOURCE_DIR}/docbook
3563                 ${CMAKE_CURRENT_SOURCE_DIR}/packaging/macosx/Wireshark_dsym_installation.adoc
3564         DEPENDS
3565                 ${CMAKE_CURRENT_SOURCE_DIR}/packaging/macosx/Wireshark_dsym_installation.adoc
3566         )
3567
3568         add_custom_target(wireshark_dmg_readmes DEPENDS ${_wireshark_read_me_first} ${_wireshark_donate} ${_wireshark_dsym_installation} )
3569         add_dependencies(wireshark_dmg_prep wireshark_dmg_readmes)
3570
3571         ADD_CUSTOM_TARGET( wireshark_dmg
3572                 COMMAND bash -x ${CMAKE_BINARY_DIR}/packaging/macosx/osx-dmg.sh
3573                 # Unlike wireshark_nsis_prep + wireshark_nsis, we can add a direct
3574                 # dependency here.
3575                 DEPENDS wireshark_dmg_prep
3576                 # We create Wireshark.app in "run". Do our work there.
3577                 WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/run
3578         )
3579
3580 endif()
3581
3582 if(ENABLE_APPLICATION_BUNDLE AND BUILD_logray)
3583         add_custom_target(logray_app_bundle)
3584         set_target_properties(logray_app_bundle PROPERTIES FOLDER "Copy Tasks")
3585         add_custom_command(TARGET logray_app_bundle
3586                 POST_BUILD
3587                 COMMAND "${CMAKE_BINARY_DIR}/packaging/macosx/osx-app.sh" --bundle Logray.app
3588                 WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/run"
3589         )
3590
3591         add_custom_target(logray_dmg_prep DEPENDS logray_app_bundle)
3592
3593         FILE(MAKE_DIRECTORY packaging/macosx/logray)
3594
3595         set(_logray_read_me_first "packaging/macosx/logray/Read me first.html")
3596         ADD_CUSTOM_COMMAND(
3597         OUTPUT
3598                 ${_logray_read_me_first}
3599         COMMAND ${ASCIIDOCTOR_EXECUTABLE}
3600                 --backend html
3601                 --out-file ${_logray_read_me_first}
3602                 --attribute include-dir=${CMAKE_SOURCE_DIR}/docbook
3603                 --attribute min-macos-version=${MIN_MACOS_VERSION}
3604                 ${CMAKE_CURRENT_SOURCE_DIR}/packaging/macosx/Logray_read_me_first.adoc
3605         DEPENDS
3606                 ${CMAKE_CURRENT_SOURCE_DIR}/packaging/macosx/Logray_read_me_first.adoc
3607         )
3608
3609         set(_logray_dsym_installation "packaging/macosx/logray/Debugging symbols installation.html")
3610         ADD_CUSTOM_COMMAND(
3611         OUTPUT
3612                 ${_logray_dsym_installation}
3613         COMMAND ${ASCIIDOCTOR_EXECUTABLE}
3614                 --backend html
3615                 --out-file ${_logray_dsym_installation}
3616                 --attribute include-dir=${CMAKE_SOURCE_DIR}/docbook
3617                 ${CMAKE_CURRENT_SOURCE_DIR}/packaging/macosx/Logray_dsym_installation.adoc
3618         DEPENDS
3619                 ${CMAKE_CURRENT_SOURCE_DIR}/packaging/macosx/Logray_dsym_installation.adoc
3620         )
3621
3622         add_custom_target(logray_dmg_readmes DEPENDS ${_logray_read_me_first} ${_logray_dsym_installation} )
3623         add_dependencies(logray_dmg_prep logray_dmg_readmes)
3624
3625         ADD_CUSTOM_TARGET( logray_dmg
3626                 COMMAND bash -x ${CMAKE_BINARY_DIR}/packaging/macosx/osx-dmg.sh --app-name Logray
3627                 # Unlike wireshark_nsis_prep + wireshark_nsis, we can add a direct
3628                 # dependency here.
3629                 DEPENDS logray_dmg_prep
3630                 # We create Wireshark.app in "run". Do our work there.
3631                 WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/run
3632         )
3633
3634 endif()
3635
3636 if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
3637         find_program(RPMBUILD_EXECUTABLE rpmbuild)
3638         find_program(GIT_EXECUTABLE git)
3639         # Should we add appimaged's monitored directories
3640         # as HINTS?
3641         # https://github.com/AppImage/appimaged
3642         find_program(LINUXDEPLOY_EXECUTABLE NAMES linuxdeploy-x86_64.AppImage linuxdeploy)
3643         find_program(_linuxdeploy_plugin_qt NAMES linuxdeploy-plugin-qt-x86_64.AppImage linuxdeploy-plugin-qt)
3644         find_program(APPIMAGETOOL_EXECUTABLE NAMES appimagetool-x86_64.AppImage
3645  appimagetool)
3646 endif()
3647
3648
3649 string(REPLACE "-" "_" RPM_VERSION "${PROJECT_VERSION}")
3650 configure_file(packaging/rpm/wireshark.spec.in ${CMAKE_BINARY_DIR}/packaging/rpm/SPECS/wireshark.spec)
3651 if(RPMBUILD_EXECUTABLE)
3652         foreach(_rpm_dir BUILD RPMS SOURCES SPECS SRPMS)
3653                 file(MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/packaging/rpm/${_rpm_dir}")
3654         endforeach()
3655
3656         set(_rpmbuild_with_args)
3657         #
3658         # This is ugly.
3659         #
3660         # At least some versions of rpmbuild define the cmake_build
3661         # macro to run "cmake --build" with the "--verbose" option,
3662         # with no obvious way to easily override that, so, if you
3663         # are doing a build with lots of source files, and with
3664         # lots of compiler options (for example, a log of -W flags),
3665         # you can get a lot of output from rpmbuild.
3666         #
3667         # Wireshark is a program with lots of source files and
3668         # lots of compiler options.
3669         #
3670         # GitLab's shared builders have a limit of 4MB on logs
3671         # from build jobs.
3672         #
3673         # Wireshark uses the shared builders, and can produce
3674         # more than 4MB with the Fedora RPM build; this causes
3675         # the builds to fail.
3676         #
3677         # Forcibly overriding the cmake_build macro with a
3678         # version that lacks the --version file should
3679         # prevent ninja from being run with the -v flag,
3680         # so that it prints the compact output rather
3681         # than the raw command.
3682         #
3683         # We don't do that by default; if the build has the
3684         # FORCE_CMAKE_NINJA_QUIET environment variable set,
3685         # it will add it.
3686         #
3687         if(DEFINED ENV{FORCE_CMAKE_NINJA_NON_VERBOSE})
3688                 #
3689                 # Get the output of a pipeline running
3690                 # "rpmbuild --showrc", to find the settings
3691                 # of all macros, piped to an awk script
3692                 # to extract the value of the cmake_build
3693                 # macro.
3694                 #
3695                 execute_process(
3696                         COMMAND rpmbuild --showrc
3697                         COMMAND awk "/: cmake_build/ { getline; print \$0; exit }"
3698                         OUTPUT_VARIABLE CMAKE_BUILD_VALUE
3699                         OUTPUT_STRIP_TRAILING_WHITESPACE)
3700                 if (CMAKE_BUILD_VALUE MATCHES ".*--verbose.*")
3701                         #
3702                         # OK, the setting contains "--verbose".
3703                         # Rip it out.
3704                         #
3705                         string(REPLACE "--verbose" ""
3706                                 NON_VERBOSE_CMAKE_BUILD_VALUE
3707                                 ${CMAKE_BUILD_VALUE})
3708                         list(APPEND _rpmbuild_with_args --define "cmake_build ${NON_VERBOSE_CMAKE_BUILD_VALUE}")
3709                 endif()
3710         else()
3711                 if(CMAKE_VERBOSE_MAKEFILE)
3712                         list(APPEND _rpmbuild_with_args -v)
3713                 endif()
3714         endif()
3715         if(CMAKE_C_COMPILER_ID STREQUAL "Clang")
3716                 list(APPEND _rpmbuild_with_args --with toolchain_clang)
3717         endif()
3718         if(CMAKE_GENERATOR STREQUAL "Ninja")
3719                 list(APPEND _rpmbuild_with_args --with ninja)
3720         endif()
3721         if(CCACHE_EXECUTABLE)
3722                 list(APPEND _rpmbuild_with_args --with ccache)
3723         endif()
3724         if(NOT BUILD_wireshark)
3725                 list(APPEND _rpmbuild_with_args --without qt5 --without qt6)
3726         elseif(USE_qt6)
3727                 list(APPEND _rpmbuild_with_args --without qt5 --with qt6)
3728         else()
3729                 list(APPEND _rpmbuild_with_args --with qt5 --without qt6)
3730         endif()
3731         if (MAXMINDDB_FOUND)
3732                 list(APPEND _rpmbuild_with_args --with mmdbresolve)
3733         endif()
3734         if (LUA_FOUND)
3735                 list(APPEND _rpmbuild_with_args --with lua)
3736         endif()
3737         if (LZ4_FOUND AND SNAPPY_FOUND)
3738                 list(APPEND _rpmbuild_with_args --with lz4_and_snappy)
3739         endif()
3740         if (SPANDSP_FOUND)
3741                 list(APPEND _rpmbuild_with_args --with spandsp)
3742         endif()
3743         if (BCG729_FOUND)
3744                 list(APPEND _rpmbuild_with_args --with bcg729)
3745         endif()
3746         if (AMRNB_FOUND)
3747                 list(APPEND _rpmbuild_with_args --with amrnb)
3748         endif()
3749         if (ILBC_FOUND)
3750                 list(APPEND _rpmbuild_with_args --with ilbc)
3751         endif()
3752         if (OPUS_FOUND)
3753                 list(APPEND _rpmbuild_with_args --with opus)
3754         endif()
3755         if (LIBXML2_FOUND)
3756                 list(APPEND _rpmbuild_with_args --with libxml2)
3757         endif()
3758         if (NGHTTP2_FOUND)
3759                 list(APPEND _rpmbuild_with_args --with nghttp2)
3760         endif()
3761         if (SYSTEMD_FOUND)
3762                 list(APPEND _rpmbuild_with_args --with sdjournal)
3763         endif()
3764         if (BROTLI_FOUND)
3765                 list(APPEND _rpmbuild_with_args --with brotli)
3766         endif()
3767
3768         execute_process(
3769                 COMMAND ${Python3_EXECUTABLE}
3770                         ${CMAKE_SOURCE_DIR}/tools/make-version.py
3771                         ${CMAKE_SOURCE_DIR}
3772         )
3773
3774         add_custom_target(copy-dist
3775                 COMMAND cp ${CMAKE_BINARY_DIR}/wireshark*tar* ${CMAKE_BINARY_DIR}/packaging/rpm/SOURCES/
3776                 DEPENDS dist
3777         )
3778         add_custom_target(wireshark_rpm
3779                 COMMAND ${RPMBUILD_EXECUTABLE}
3780                         --define "_topdir ${CMAKE_BINARY_DIR}/packaging/rpm"
3781                         --define "_prefix ${CMAKE_INSTALL_PREFIX}"
3782                         ${_rpmbuild_with_args}
3783                         -ba SPECS/wireshark.spec
3784                 DEPENDS copy-dist
3785                 WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/packaging/rpm"
3786                 COMMENT "Create a rpm from the current git commit."
3787         )
3788 endif()
3789
3790 if(BUILD_wireshark AND QT_FOUND AND LINUXDEPLOY_EXECUTABLE AND _linuxdeploy_plugin_qt AND APPIMAGETOOL_EXECUTABLE)
3791         configure_file(packaging/appimage/Wireshark-AppRun.in ${CMAKE_BINARY_DIR}/packaging/appimage/Wireshark-AppRun @ONLY)
3792         # Require production builds (/usr + Release).
3793         if (CMAKE_BUILD_TYPE STREQUAL "Release" AND CMAKE_INSTALL_PREFIX STREQUAL "/usr" )
3794                 add_custom_target(wireshark_appimage_prerequisites)
3795                 add_dependencies(wireshark_appimage_prerequisites ${PROGLIST})
3796         else()
3797                 add_custom_target(wireshark_appimage_prerequisites
3798                         COMMAND echo "CMAKE_BUILD_TYPE isn't Release or CMAKE_INSTALL_PREFIX isn't /usr."
3799                         COMMAND false
3800                 )
3801         endif()
3802         set (_wireshark_ai_appdir ${CMAKE_BINARY_DIR}/packaging/appimage/wireshark.appdir)
3803         add_custom_target(wireshark_appimage_appdir
3804                 COMMAND ${CMAKE_COMMAND} -E make_directory ${_wireshark_ai_appdir}
3805                 COMMAND env DESTDIR=${_wireshark_ai_appdir}
3806                         ${CMAKE_COMMAND} --build . --target install
3807                 DEPENDS wireshark_appimage_prerequisites
3808         )
3809         set(_wireshark_appimage_exe_args)
3810         foreach(_prog ${PROGLIST})
3811                 # XXX This needs to be more robust.
3812                 if (${_prog} STREQUAL "dftest" OR ${_prog} STREQUAL "logray")
3813                         continue()
3814                 endif()
3815                 list(APPEND _wireshark_appimage_exe_args --executable=${_wireshark_ai_appdir}/usr/bin/${_prog})
3816         endforeach()
3817         # It looks like linuxdeploy can't handle executables in nonstandard
3818         # locations, so use it to prep our staging directory here and use
3819         # appimagetool to to build the appimage.
3820         add_custom_target(wireshark_appimage_prep
3821                 COMMAND env LD_LIBRARY_PATH=${_wireshark_ai_appdir}/${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR} ${LINUXDEPLOY_EXECUTABLE}
3822                         --appdir=${_wireshark_ai_appdir}
3823                         ${_wireshark_appimage_exe_args}
3824                         --desktop-file=${_wireshark_ai_appdir}/usr/share/applications/org.wireshark.Wireshark.desktop
3825                         --icon-file=${CMAKE_SOURCE_DIR}/resources/icons/wsicon256.png
3826                         --custom-apprun=${CMAKE_BINARY_DIR}/packaging/appimage/Wireshark-AppRun
3827                         --plugin=qt
3828                 DEPENDS wireshark_appimage_appdir
3829         )
3830         add_custom_target(wireshark_appimage
3831                 COMMAND env VERSION=${PROJECT_VERSION} ${APPIMAGETOOL_EXECUTABLE} ${_wireshark_ai_appdir}
3832                 DEPENDS wireshark_appimage_prep
3833         )
3834 endif()
3835
3836 if(BUILD_logray AND QT_FOUND AND LINUXDEPLOY_EXECUTABLE AND _linuxdeploy_plugin_qt AND APPIMAGETOOL_EXECUTABLE)
3837         configure_file(packaging/appimage/Logray-AppRun.in ${CMAKE_BINARY_DIR}/packaging/appimage/Logray-AppRun @ONLY)
3838         # Require production builds (/usr + Release).
3839         if (CMAKE_BUILD_TYPE STREQUAL "Release" AND CMAKE_INSTALL_PREFIX STREQUAL "/usr" )
3840                 add_custom_target(logray_appimage_prerequisites)
3841                 add_dependencies(logray_appimage_prerequisites ${PROGLIST})
3842         else()
3843                 add_custom_target(logray_appimage_prerequisites
3844                         COMMAND echo "CMAKE_BUILD_TYPE isn't Release or CMAKE_INSTALL_PREFIX isn't /usr."
3845                         COMMAND false
3846                 )
3847         endif()
3848         set (_logray_ai_appdir ${CMAKE_BINARY_DIR}/packaging/appimage/logray.appdir)
3849         add_custom_target(logray_appimage_appdir
3850                 COMMAND ${CMAKE_COMMAND} -E make_directory ${_logray_ai_appdir}
3851                 COMMAND env DESTDIR=${_logray_ai_appdir}
3852                         ${CMAKE_COMMAND} --build . --target install
3853                 DEPENDS logray_appimage_prerequisites
3854         )
3855         set(_logray_appimage_exe_args)
3856         foreach(_prog ${PROGLIST})
3857                 # XXX This needs to be more robust.
3858                 if (${_prog} STREQUAL "dftest" OR ${_prog} STREQUAL "logray")
3859                         continue()
3860                 endif()
3861                 list(APPEND _logray_appimage_exe_args --executable=${_logray_ai_appdir}/usr/bin/${_prog})
3862         endforeach()
3863         # It looks like linuxdeploy can't handle executables in nonstandard
3864         # locations, so use it to prep our staging directory here and use
3865         # appimagetool to to build the appimage.
3866         add_custom_target(logray_appimage_prep
3867                 COMMAND env LD_LIBRARY_PATH=${_logray_ai_appdir}/${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR} ${LINUXDEPLOY_EXECUTABLE}
3868                         --appdir=${_logray_ai_appdir}
3869                         ${_logray_appimage_exe_args}
3870                         --desktop-file=${_logray_ai_appdir}/usr/share/applications/org.wireshark.Logray.desktop
3871                         --icon-file=${CMAKE_SOURCE_DIR}/resources/icons/lricon256.png
3872                         --custom-apprun=${CMAKE_BINARY_DIR}/packaging/appimage/Logray-AppRun
3873                         --plugin=qt
3874                 DEPENDS logray_appimage_appdir
3875         )
3876         add_custom_target(logray_appimage
3877                 COMMAND env VERSION=${LOG_PROJECT_VERSION} ${APPIMAGETOOL_EXECUTABLE} ${_logray_ai_appdir}
3878                 DEPENDS logray_appimage_prep
3879         )
3880 endif()
3881
3882 set(CLEAN_C_FILES
3883         ${dumpcap_FILES}
3884         ${wireshark_FILES}
3885         ${logray_FILES}
3886         ${tshark_FILES}
3887         ${tfshark_FILES}
3888         ${rawshark_FILES}
3889         ${dftest_FILES}
3890         ${randpkt_FILES}
3891         ${randpktdump_FILES}
3892         ${etwdump_FILES}
3893         ${falcodump_FILES}
3894         ${udpdump_FILES}
3895         ${text2pcap_FILES}
3896         ${mergecap_FILES}
3897         ${capinfos_FILES}
3898         ${captype_FILES}
3899         ${editcap_FILES}
3900         ${idl2wrs_FILES}
3901         ${mmdbresolve_FILES}
3902         ${sharkd_FILES}
3903 )
3904
3905 if(CLEAN_C_FILES)
3906         # Make sure we don't pass /WX to rc.exe. Rc doesn't have a /WX flag,
3907         # but it does have /W (warn about invalid code pages) and /X (ignore
3908         # the INCLUDE environment variable).
3909         # This should apparently be handled for us via CMAKE_RC_FLAG_REGEX
3910         # in CMakeRCInformation.cmake but that doesn't appear to work.
3911         if(WIN32)
3912                 list(FILTER CLEAN_C_FILES EXCLUDE REGEX ".*\\.rc")
3913         endif()
3914
3915         # XXX This also contains object files ($<TARGET_OBJECTS:...>), is that an issue?
3916         set_source_files_properties(
3917                 ${CLEAN_C_FILES}
3918                 PROPERTIES
3919                 COMPILE_FLAGS "${WERROR_COMMON_FLAGS}"
3920         )
3921 endif()
3922
3923 install(
3924         FILES
3925                 ${INSTALL_FILES}
3926         PERMISSIONS
3927                 OWNER_WRITE OWNER_READ
3928                 GROUP_READ
3929                 WORLD_READ
3930         DESTINATION
3931                 ${CMAKE_INSTALL_DATADIR}
3932 )
3933
3934 install(
3935         FILES
3936                 ${DOC_FILES}
3937         DESTINATION
3938                 ${CMAKE_INSTALL_DOCDIR}
3939 )
3940
3941 if(ASCIIDOCTOR_FOUND AND XSLTPROC_EXECUTABLE)
3942         install(
3943                 DIRECTORY "${CMAKE_BINARY_DIR}/docbook/wsug_html_chunked"
3944                 DESTINATION "${CMAKE_INSTALL_DOCDIR}"
3945                 COMPONENT "UserGuide"
3946                 EXCLUDE_FROM_ALL
3947         )
3948         install(
3949                 DIRECTORY "${CMAKE_BINARY_DIR}/docbook/wsdg_html_chunked"
3950                 DESTINATION "${CMAKE_INSTALL_DOCDIR}"
3951                 COMPONENT "DeveloperGuide"
3952                 EXCLUDE_FROM_ALL
3953         )
3954 endif()
3955
3956 set(SHARK_PUBLIC_HEADERS
3957         cfile.h
3958         cli_main.h
3959         file.h
3960         include/ws_attributes.h
3961         include/ws_codepoints.h
3962         include/ws_compiler_tests.h
3963         include/ws_diag_control.h
3964         include/ws_exit_codes.h
3965         include/ws_log_defs.h
3966         include/ws_posix_compat.h
3967         include/ws_symbol_export.h
3968         include/wireshark.h
3969         ${CMAKE_BINARY_DIR}/ws_version.h
3970 )
3971
3972 install(FILES ${SHARK_PUBLIC_HEADERS}
3973         DESTINATION ${PROJECT_INSTALL_INCLUDEDIR}
3974         COMPONENT "Development"
3975         EXCLUDE_FROM_ALL
3976 )
3977
3978 # Install icons and other desktop files for Freedesktop.org-compliant desktops.
3979 if(BUILD_wireshark AND QT_FOUND AND NOT APPLE AND (NOT WIN32 OR USE_MSYSTEM))
3980         install(FILES resources/freedesktop/org.wireshark.Wireshark-mime.xml
3981                 DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/mime/packages"
3982                 RENAME org.wireshark.Wireshark.xml
3983         )
3984         install(FILES resources/freedesktop/org.wireshark.Wireshark.metainfo.xml
3985                 DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/metainfo"
3986         )
3987         if(BUILD_wireshark AND QT_FOUND)
3988                 install(FILES resources/freedesktop/org.wireshark.Wireshark.desktop
3989                         DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/applications")
3990         endif()
3991         foreach(size 16 24 32 48 64 128 256)
3992                 install(FILES resources/icons/wsicon${size}.png
3993                         DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/icons/hicolor/${size}x${size}/apps"
3994                         RENAME org.wireshark.Wireshark.png)
3995                 install(FILES resources/icons/WiresharkDoc-${size}.png
3996                         DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/icons/hicolor/${size}x${size}/mimetypes"
3997                         RENAME org.wireshark.Wireshark-mimetype.png)
3998         endforeach()
3999 endif()
4000
4001 if(BUILD_logray AND QT_FOUND AND NOT APPLE AND (NOT WIN32 OR USE_MSYSTEM))
4002         install(FILES resources/freedesktop/org.wireshark.Logray-mime.xml
4003                 DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/mime/packages"
4004                 RENAME org.wireshark.Logray.xml
4005         )
4006         install(FILES resources/freedesktop/org.wireshark.Logray.metainfo.xml
4007                 DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/metainfo"
4008         )
4009         if(BUILD_wireshark AND QT_FOUND)
4010                 install(FILES resources/freedesktop/org.wireshark.Logray.desktop
4011                         DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/applications")
4012         endif()
4013         foreach(size 16 32 48 64 128 256)
4014                 install(FILES resources/icons/lricon${size}.png
4015                         DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/icons/hicolor/${size}x${size}/apps"
4016                         RENAME org.wireshark.Logray.png)
4017                 install(FILES resources/icons/WiresharkDoc-${size}.png
4018                         DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/icons/hicolor/${size}x${size}/mimetypes"
4019                         RENAME org.wireshark.Logray-mimetype.png)
4020         endforeach()
4021         install(FILES resources/icons/lricon.svg
4022                 DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/icons/hicolor/scalable/apps"
4023                 RENAME org.wireshark.Logray.svg)
4024 endif()
4025
4026 install(
4027         FILES
4028                 "${CMAKE_BINARY_DIR}/wireshark.pc"
4029         DESTINATION
4030                 ${CMAKE_INSTALL_LIBDIR}/pkgconfig
4031         COMPONENT
4032                 "Development"
4033         EXCLUDE_FROM_ALL
4034 )
4035
4036 install(
4037         DIRECTORY
4038                 ${INSTALL_DIRS}
4039         DESTINATION
4040                 ${CMAKE_INSTALL_DATADIR}
4041         FILE_PERMISSIONS
4042                 OWNER_WRITE OWNER_READ
4043                 GROUP_READ
4044                 WORLD_READ
4045         DIRECTORY_PERMISSIONS
4046                 OWNER_EXECUTE OWNER_WRITE OWNER_READ
4047                 GROUP_EXECUTE GROUP_READ
4048                 WORLD_EXECUTE WORLD_READ
4049         PATTERN ".git" EXCLUDE
4050         PATTERN ".svn" EXCLUDE
4051         PATTERN "Makefile.*" EXCLUDE
4052 )
4053
4054 if(WIN32 AND NOT USE_MSYSTEM)
4055         # Note: CMake export mechanism misbehaves with a '.' in the
4056         # path (incorrect relative path computation).
4057         set(WIRESHARK_INSTALL_CMAKEDIR "cmake")
4058 else()
4059         set(WIRESHARK_INSTALL_CMAKEDIR "${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}")
4060 endif()
4061
4062 include(CMakePackageConfigHelpers)
4063
4064 configure_package_config_file(WiresharkConfig.cmake.in
4065         ${CMAKE_BINARY_DIR}/WiresharkConfig.cmake
4066         INSTALL_DESTINATION ${WIRESHARK_INSTALL_CMAKEDIR}
4067         PATH_VARS
4068                 CMAKE_INSTALL_LIBDIR
4069                 CMAKE_INSTALL_INCLUDEDIR
4070                 PLUGIN_INSTALL_VERSION_LIBDIR
4071                 EXTCAP_INSTALL_LIBDIR
4072 )
4073
4074 write_basic_package_version_file(
4075         ${CMAKE_BINARY_DIR}/WiresharkConfigVersion.cmake
4076         COMPATIBILITY AnyNewerVersion
4077 )
4078
4079 install(
4080         FILES
4081                 ${CMAKE_BINARY_DIR}/WiresharkConfig.cmake
4082                 ${CMAKE_BINARY_DIR}/WiresharkConfigVersion.cmake
4083         DESTINATION
4084                 ${WIRESHARK_INSTALL_CMAKEDIR}
4085         COMPONENT
4086                 "Development"
4087         EXCLUDE_FROM_ALL
4088 )
4089
4090 install(EXPORT WiresharkTargets
4091         DESTINATION ${WIRESHARK_INSTALL_CMAKEDIR}
4092         COMPONENT "Development"
4093         EXCLUDE_FROM_ALL
4094 )
4095
4096 # This isn't strictly needed but it makes working around debhelper's
4097 # cleverness a lot easier.
4098 add_custom_target(install-headers
4099         COMMAND ${CMAKE_COMMAND} -DCOMPONENT=Development -P cmake_install.cmake
4100 )
4101
4102 if (DOXYGEN_EXECUTABLE)
4103         # API reference
4104         # We don't have a good way of tracking dependencies, so we simply
4105         # recreate the whole thing from scratch each time.
4106         add_custom_target(wsar_html
4107                 COMMAND ${CMAKE_COMMAND} -E remove_directory wsar_html
4108                 COMMAND ${DOXYGEN_EXECUTABLE} doxygen.cfg
4109         )
4110
4111         if(WIN32 AND NOT USE_MSYSTEM)
4112                 add_custom_target(wsar_html_perms DEPENDS wsar_html)
4113         else()
4114                 add_custom_target(wsar_html_perms
4115                         COMMAND find wsar_html
4116                                 -type d
4117                                 -exec chmod 755 "{}" +
4118                         COMMAND find wsar_html
4119                                 -type f
4120                                 -exec chmod 644 "{}" +
4121                         DEPENDS wsar_html)
4122         endif()
4123
4124         add_custom_target(wsar_html_zip
4125                 COMMAND ${CMAKE_COMMAND} -E tar "cfv" "wsar_html.zip" --format=zip wsar_html
4126                 DEPENDS wsar_html_perms
4127         )
4128         set_target_properties(wsar_html wsar_html_zip PROPERTIES
4129                 FOLDER "Documentation"
4130                 EXCLUDE_FROM_DEFAULT_BUILD True
4131         )
4132 endif(DOXYGEN_EXECUTABLE)
4133
4134 add_custom_target(test-programs
4135         DEPENDS exntest
4136                 fifo_string_cache_test
4137                 oids_test
4138                 reassemble_test
4139                 tvbtest
4140                 wmem_test
4141                 wscbor_test
4142                 test_epan
4143                 test_wsutil
4144         COMMENT "Building unit test programs and wrapper"
4145 )
4146 set_target_properties(test-programs PROPERTIES
4147         FOLDER "Tests"
4148         EXCLUDE_FROM_DEFAULT_BUILD True
4149 )
4150
4151 # Add target to enable capturing from the build directory. Requires Linux capabilities
4152 # and running with sudo.
4153 if(TARGET dumpcap AND SETCAP_EXECUTABLE)
4154         add_custom_target(test-capture
4155                 COMMAND ${SETCAP_EXECUTABLE} cap_net_raw,cap_net_admin+ep $<TARGET_FILE:dumpcap>
4156         )
4157 endif()
4158
4159 add_custom_target(test
4160         COMMAND ${CMAKE_COMMAND} -E env PYTHONIOENCODING=UTF-8
4161                 ${Python3_EXECUTABLE} -m pytest
4162         WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
4163         DEPENDS test-programs
4164         USES_TERMINAL
4165 )
4166
4167 # Make it possible to run pytest without passing the full path as argument.
4168 if(NOT CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR)
4169         file(READ "${CMAKE_CURRENT_SOURCE_DIR}/pytest.ini" pytest_ini)
4170         string(REGEX REPLACE "\naddopts = ([^\n]+)"
4171                 "\naddopts = ${CMAKE_CURRENT_SOURCE_DIR}/test \\1"
4172                 pytest_ini "${pytest_ini}")
4173         file(WRITE "${CMAKE_BINARY_DIR}/pytest.ini" "${pytest_ini}")
4174 endif()
4175
4176 if (GIT_EXECUTABLE)
4177         # Update AUTHORS file with entries from git shortlog
4178         add_custom_target(
4179                 gen-authors
4180                 COMMAND ${Python3_EXECUTABLE} tools/generate_authors.py AUTHORS
4181                 WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
4182         )
4183 else (GIT_EXECUTABLE)
4184         add_custom_target( gen-authors COMMAND ${CMAKE_COMMAND} -E echo "Git not found." )
4185 endif (GIT_EXECUTABLE)
4186 set_target_properties(gen-authors PROPERTIES FOLDER "Documentation")
4187
4188 if(WIN32 AND NOT USE_MSYSTEM)
4189         file (TO_NATIVE_PATH ${CMAKE_SOURCE_DIR}/tools/Get-HardenFlags.ps1 _win_harden_flags)
4190         add_custom_target(hardening-check
4191                 COMMAND ${POWERSHELL_COMMAND} "${_win_harden_flags}" "${_dll_output_dir_win}"
4192                 DEPENDS ${PROGLIST}
4193                 COMMENT "Checking binaries for security features"
4194         )
4195         set_target_properties(hardening-check PROPERTIES FOLDER "Tests")
4196 else()
4197         find_program(HARDENING_CHECK_EXECUTABLE hardening-check
4198                 DOC "Path to the hardening-check utility."
4199         )
4200         if(HARDENING_CHECK_EXECUTABLE)
4201                 foreach(_prog ${PROGLIST})
4202                         get_target_property(_prog_dir ${_prog} RUNTIME_OUTPUT_DIRECTORY)
4203                         if(NOT _prog_dir)
4204                                 set(_prog_dir "${CMAKE_BINARY_DIR}/run")
4205                         endif()
4206                         set(_prog_paths ${_prog_paths} "${_prog_dir}/${_prog}")
4207                 endforeach()
4208                 add_custom_target(hardening-check
4209                         COMMAND ${HARDENING_CHECK_EXECUTABLE} ${_prog_paths}
4210                         DEPENDS ${PROGLIST}
4211                         COMMENT "Checking binaries for security features"
4212                 )
4213         endif()
4214 endif()
4215
4216 CHECKAPI(
4217         NAME
4218           main
4219         SWITCHES
4220         SOURCES
4221           ${WIRESHARK_SRC}
4222           ${TSHARK_TAP_SRC}
4223 )
4224
4225 find_program(SHELLCHECK_EXECUTABLE shellcheck
4226         DOC "Path to the shellcheck utility."
4227 )
4228 if(SHELLCHECK_EXECUTABLE)
4229         add_custom_target(shellcheck)
4230         set_target_properties(shellcheck PROPERTIES FOLDER "Tests")
4231         # --external-sources requires 0.4.0 or later.
4232         # ChmodBPF uses "shellcheck shell=bash". Not sure which version
4233         # added support for that.
4234         add_custom_command(TARGET shellcheck POST_BUILD
4235                 COMMAND shellcheck --external-sources
4236                         resources/stock_icons/svg-to-png.sh
4237                         packaging/appimage/Logray-AppRun.in
4238                         packaging/appimage/Wireshark-AppRun.in
4239                         "packaging/macosx/ChmodBPF/root/Library/Application Support/Wireshark/ChmodBPF/ChmodBPF"
4240                         packaging/macosx/osx-app.sh.in
4241                         packaging/macosx/osx-dmg.sh.in
4242                         packaging/source/git-export-release.sh.in
4243                         tools/debian-setup.sh
4244                         tools/fuzz-test.sh
4245                         tools/gen-bugnote
4246                         tools/pre-commit
4247                         tools/randpkt-test.sh
4248                         tools/release-update-debian-soversions.sh
4249                         tools/test-captures.sh
4250                         tools/update-tx
4251                         tools/valgrind-wireshark.sh
4252                 WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}"
4253         )
4254 endif()
4255
4256 # uninstall target
4257 configure_file(
4258         "${CMAKE_CURRENT_SOURCE_DIR}/cmake_uninstall.cmake.in"
4259         "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake"
4260         IMMEDIATE @ONLY)
4261
4262 add_custom_target(uninstall
4263         COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake)
4264
4265 # Break on programmer errors when debugging in Visual Studio
4266 if(MSVC)
4267         get_property(_targets DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY BUILDSYSTEM_TARGETS)
4268         foreach(_target ${_targets})
4269                 set_target_properties(${_target} PROPERTIES VS_DEBUGGER_ENVIRONMENT "G_DEBUG=fatal-criticals")
4270         endforeach()
4271 endif()
4272
4273 # -----------------------------------------------------------------------------
4274 # Packaging (CPack)
4275 # -----------------------------------------------------------------------------
4276 include(ConfigCPack.cmake)
4277
4278 #
4279 # Editor modelines  -  https://www.wireshark.org/tools/modelines.html
4280 #
4281 # Local variables:
4282 # c-basic-offset: 8
4283 # tab-width: 8
4284 # indent-tabs-mode: t
4285 # End:
4286 #
4287 # vi: set shiftwidth=8 tabstop=8 noexpandtab:
4288 # :indentSize=8:tabSize=8:noTabs=false:
4289 #