# 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 PrintSupport) 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 QuickWidgets) qt_build_repo()