This reverts commit b52d9173f8f0201a360bc1d5ada38297a6e13553. Resolved conflicts in: * doc/release-notes.adoc * packaging/nsis/logray.nsi: Still install cloudtrail.dll to plugin path without version as changed in f4e71562d09d52fccd63b1839afefdc500bfcc7a. * ui/qt/about_dialog.cpp: Still capitalize "Binary plugins" as changed in 2155ef34b00b7ddb758f2cf1d1eeb4a9eaa379fc. * wsutil/filesystem.c: Keep init to zero removed as changed in d0b143bbecf422db5b6f51b549726786e85a3540.
29 lines
1.2 KiB
CMake
29 lines
1.2 KiB
CMake
set(Wireshark_MAJOR_VERSION @PROJECT_MAJOR_VERSION@)
|
|
set(Wireshark_MINOR_VERSION @PROJECT_MINOR_VERSION@)
|
|
set(Wireshark_PATCH_VERSION @PROJECT_PATCH_VERSION@)
|
|
set(Wireshark_VERSION "@PROJECT_VERSION@")
|
|
|
|
set(Wireshark_PLUGINS_ENABLED @HAVE_PLUGINS@)
|
|
set(Wireshark_PLUGIN_LIBDIR "@PLUGIN_INSTALL_VERSION_LIBDIR@")
|
|
|
|
@PACKAGE_INIT@
|
|
|
|
set_and_check(Wireshark_INSTALL_PREFIX "${PACKAGE_PREFIX_DIR}")
|
|
set_and_check(Wireshark_LIB_DIR "@PACKAGE_CMAKE_INSTALL_LIBDIR@")
|
|
set_and_check(Wireshark_INCLUDE_DIR "@PACKAGE_CMAKE_INSTALL_INCLUDEDIR@/wireshark")
|
|
#
|
|
# set_and_check() cannot be used with directories that may or may not exist.
|
|
# If no plugins or extcaps are built the respective directories will not exist in the target
|
|
# system and set_and_check() and therefore find_package() will fail with a FATAL_ERROR,
|
|
# which is not helpful because the variable is correct, it's just that the empty directories
|
|
# were not created (also correctly, empty directories are just noise).
|
|
#
|
|
if(Wireshark_PLUGINS_ENABLED)
|
|
set(Wireshark_PLUGIN_INSTALL_DIR "@PACKAGE_PLUGIN_INSTALL_VERSION_LIBDIR@")
|
|
endif()
|
|
set(Wireshark_EXTCAP_INSTALL_DIR "@PACKAGE_EXTCAP_INSTALL_LIBDIR@")
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/WiresharkTargets.cmake")
|
|
|
|
check_required_components(Wireshark)
|