diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2024-03-02 08:33:05 +0100 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2024-03-02 08:48:29 +0100 |
commit | a0af1b764cbaee9a6b851db85b4b142787b1536b (patch) | |
tree | 39f948143ca0135b3ef229893440aa3b1c205817 /benchmarks | |
parent | x11-wm/wayfire: unbreak build after b35bdcd8fa50 (diff) |
benchmarks/vkmark: detect glm via cmake config after b35bdcd8fa50
Run-time dependency glm found: NO (tried pkgconfig and cmake)
Has header "glm/glm.hpp" : YES
Reported by: pkg-fallout
Diffstat (limited to 'benchmarks')
-rw-r--r-- | benchmarks/vkmark/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/benchmarks/vkmark/Makefile b/benchmarks/vkmark/Makefile index 342d7b5758bc..7391502e8c29 100644 --- a/benchmarks/vkmark/Makefile +++ b/benchmarks/vkmark/Makefile @@ -14,7 +14,8 @@ WWW= https://github.com/vkmark/vkmark LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING-LGPL2.1 -BUILD_DEPENDS= vulkan-headers>0:graphics/vulkan-headers \ +BUILD_DEPENDS= cmake:devel/cmake-core \ + vulkan-headers>0:graphics/vulkan-headers \ glm>0:math/glm LIB_DEPENDS= libvulkan.so:graphics/vulkan-loader \ libassimp.so:multimedia/assimp |