qtgraphs/CMakeLists.txt

29 lines
915 B
CMake
Raw Normal View History

2023-03-02 13:45:23 +00:00
# Copyright (C) 2023 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
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)
2023-03-02 13:45:23 +00:00
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)
2023-03-02 13:45:23 +00:00
qt_build_repo()