forked from conan-io/conan-center-index
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from valgur/feature/AddPCL
pcl: misc recipe tweaks
- Loading branch information
Showing
6 changed files
with
151 additions
and
325 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 0 additions & 12 deletions
12
recipes/pcl/all/patches/0001-KB-H020_avoid_pkgconfig_files.patch
This file was deleted.
Oops, something went wrong.
19 changes: 19 additions & 0 deletions
19
recipes/pcl/all/patches/0001-ReportFixAboutMemoryConsumptionDuringBuild.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
recipes/pcl/all/patches/0001-cmake_use_conan_targets.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -319,6 +319,6 @@ endif() | ||
find_package(Threads REQUIRED) | ||
|
||
# Eigen (required) | ||
-find_package(Eigen 3.3 REQUIRED) | ||
+find_package(EIGEN REQUIRED) | ||
include_directories(SYSTEM ${EIGEN_INCLUDE_DIRS}) | ||
|
||
--- a/common/CMakeLists.txt | ||
+++ b/common/CMakeLists.txt | ||
@@ -4,7 +4,7 @@ set(SUBSYS_DEPS) | ||
|
||
set(build TRUE) | ||
PCL_SUBSYS_OPTION(build "${SUBSYS_NAME}" "${SUBSYS_DESC}" ON) | ||
-PCL_SUBSYS_DEPEND(build NAME ${SUBSYS_NAME} DEPS ${SUBSYS_DEPS} EXT_DEPS eigen boost) | ||
+PCL_SUBSYS_DEPEND(build NAME ${SUBSYS_NAME} DEPS ${SUBSYS_DEPS} EXT_DEPS EIGEN Boost) | ||
|
||
PCL_ADD_DOC("${SUBSYS_NAME}") | ||
|
||
--- a/io/CMakeLists.txt | ||
+++ b/io/CMakeLists.txt | ||
@@ -1,7 +1,7 @@ | ||
set(SUBSYS_NAME io) | ||
set(SUBSYS_DESC "Point cloud IO library") | ||
set(SUBSYS_DEPS common octree) | ||
-set(SUBSYS_EXT_DEPS boost eigen) | ||
+set(SUBSYS_EXT_DEPS Boost EIGEN) | ||
|
||
set(build TRUE) | ||
PCL_SUBSYS_OPTION(build "${SUBSYS_NAME}" "${SUBSYS_DESC}" ON) |
Oops, something went wrong.