mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
22 lines
495 B
CMake
22 lines
495 B
CMake
# SPDX-FileCopyrightText: 2014 ownCloud GmbH
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Redistribution and use is allowed according to the terms of the BSD license.
|
|
# For details see the accompanying COPYING* file.
|
|
|
|
find_program(PDFLATEX_EXECUTABLE NAMES pdflatex
|
|
HINTS
|
|
$ENV{PDFLATEX_DIR}
|
|
PATH_SUFFIXES bin
|
|
DOC "PDF LaTeX"
|
|
)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
|
|
find_package_handle_standard_args(PdfLatex DEFAULT_MSG
|
|
PDFLATEX_EXECUTABLE
|
|
)
|
|
|
|
mark_as_advanced(
|
|
PDFLATEX_EXECUTABLE
|
|
)
|