You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-gfx/openscad/files/openscad-9999-fix-pkg-confi...

32 lines
1.0 KiB

From 2483ee56960c99c35036273fc9fc2877eac772fc Mon Sep 17 00:00:00 2001
From: Bernd Waibel <waebbl-gentoo@posteo.net>
Date: Wed, 20 Oct 2021 19:46:08 +0200
Subject: [PATCH] fix pkg-config name and include directory search
Signed-off-by: Bernd Waibel <waebbl-gentoo@posteo.net>
---
cmake/Modules/FindLib3MF.cmake | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/cmake/Modules/FindLib3MF.cmake b/cmake/Modules/FindLib3MF.cmake
index 44858364..ad2f01ca 100644
--- a/cmake/Modules/FindLib3MF.cmake
+++ b/cmake/Modules/FindLib3MF.cmake
@@ -14,11 +14,11 @@
# Travis CI Ubuntu Trusty environment has some issue with pkg-config
# not finding the version.
find_package(PkgConfig REQUIRED QUIET)
-pkg_check_modules(PC_LIB3MF lib3MF)
+pkg_check_modules(PC_LIB3MF lib3mf)
set(LIB3MF_VERSION ${PC_LIB3MF_VERSION})
find_path(LIB3MF_INCLUDE_DIRS
- NAMES Model/COM/NMR_DLLInterfaces.h
+ NAMES lib3mf_implicit.hpp
HINTS $ENV{LIB3MF_INCLUDEDIR}
${PC_LIB3MF_INCLUDEDIR}
${PC_LIB3MF_INCLUDE_DIRS}
--
2.33.1