1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
# SPDX-FileCopyrightText: 2019, 2021 Friedrich W. H. Kossebau <kossebau@kde.org>
#
# SPDX-License-Identifier: BSD-3-Clause
#[=======================================================================[.rst:
Findgzip
--------
Try to find gzip.
If the gzip executable is not in your PATH, you can provide
an alternative name or full path location with the ``gzip_EXECUTABLE``
variable.
This will define the following variables:
``gzip_FOUND``
TRUE if gzip is available
``gzip_EXECUTABLE``
Path to gzip executable
If ``gzip_FOUND`` is TRUE, it will also define the following imported
target:
``gzip::gzip``
Path to gzip executable
Since 5.85.0.
#]=======================================================================]
find_program(gzip_EXECUTABLE NAMES gzip)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(gzip
FOUND_VAR
gzip_FOUND
REQUIRED_VARS
gzip_EXECUTABLE
)
mark_as_advanced(gzip_EXECUTABLE)
if(NOT TARGET gzip::gzip AND gzip_FOUND)
add_executable(gzip::gzip IMPORTED)
set_target_properties(gzip::gzip PROPERTIES
IMPORTED_LOCATION "${gzip_EXECUTABLE}"
)
endif()
include(FeatureSummary)
set_package_properties(gzip PROPERTIES
URL "https://www.gnu.org/software/gzip"
DESCRIPTION "Data compression program for the gzip format"
)
|