mirror of https://github.com/qt/qtgraphs.git
29 lines
861 B
CMake
29 lines
861 B
CMake
# Copyright (C) 2023 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
cmake_minimum_required(VERSION 3.16)
|
|
|
|
include(.cmake.conf)
|
|
project(QtGraphs
|
|
VERSION "${QT_REPO_MODULE_VERSION}"
|
|
DESCRIPTION "Qt Graphs Libraries"
|
|
HOMEPAGE_URL "https://qt.io/"
|
|
LANGUAGES CXX C
|
|
)
|
|
|
|
find_package(Qt6 ${PROJECT_VERSION} CONFIG REQUIRED COMPONENTS BuildInternals)
|
|
find_package(Qt6 ${PROJECT_VERSION} CONFIG OPTIONAL_COMPONENTS Core Quick Gui Widgets QuickTest QuickWidgets Test Quick3D QuickShapesPrivate)
|
|
|
|
macro(assertTargets)
|
|
foreach(qtTarget IN ITEMS ${ARGN})
|
|
if(NOT TARGET Qt::${qtTarget})
|
|
message(NOTICE "Skipping the build as the condition \"TARGET Qt::${qtTarget}\" is not met.")
|
|
return()
|
|
endif()
|
|
endforeach()
|
|
endmacro()
|
|
|
|
assertTargets(Gui Widgets Quick QuickTest QuickWidgets Test)
|
|
|
|
qt_build_repo()
|