Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions repos/spack_repo/builtin/packages/qt_3d/package.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Copyright Spack Project Developers. See COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)


from spack_repo.builtin.packages.qt_base.package import QtBase, QtPackage

from spack.package import *


class Qt3d(QtPackage):
"""Qt 3D provides a fully configurable renderer that enables developers to
quickly implement any rendering pipeline that they need. Further, Qt 3D
provides a generic framework for near-realtime simulations beyond
rendering."""

url = QtPackage.get_url(__qualname__)
git = QtPackage.get_git(__qualname__)
list_url = QtPackage.get_list_url(__qualname__)

license("LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only", checked_by="melven")

version("6.11.1", commit="1f4c3a7548201bcad21a273a49060c96ad9ff3a9", submodules=True)
Comment thread
bernhardkaindl marked this conversation as resolved.

depends_on("c", type="build")
depends_on("cxx", type="build")

depends_on("qt-base +gui +opengl +widgets +network")

depends_on("gl", type=("build", "link"))
depends_on("glu", type=("build", "link"))
# unfortunately, the build process does not seem to pick up this external assimp
# depends_on("assimp", type=("build", "link"))

for _v in QtBase.versions:
v = str(_v)
depends_on("qt-base@" + v, when="@" + v)
Loading