File: MpvQtConfig.cmake.in

package info (click to toggle)
mpvqt 1.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 336 kB
  • sloc: cpp: 964; makefile: 3
file content (23 lines) | stat: -rw-r--r-- 521 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#
# SPDX-FileCopyrightText: 2023 George Florea Bănuș <georgefb899@gmail.com>
#
# SPDX-License-Identifier: BSD-3-Clause
#

@PACKAGE_INIT@

include(CMakeFindDependencyMacro)

if(NOT @BUILD_SHARED_LIBS@)
    find_dependency(Qt6Core)
    find_dependency(Qt6Gui)
    find_dependency(Qt6Qml)
    find_dependency(Libmpv)
endif()

find_dependency(Qt6Quick)
list(PREPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}")
find_dependency(Libmpv)

include("${CMAKE_CURRENT_LIST_DIR}/MpvQtTargets.cmake")
@PACKAGE_INCLUDE_QCHTARGETS@