Skip to content

Commit 9e9c5d3

Browse files
committed
qhull is installed as libqhull in HIRONX
See start-jsk/rtmros_hironx#423 (comment) See fkanehiro#83 (comment)
1 parent 20c35b3 commit 9e9c5d3

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

cmake_modules/FindQuickHull.cmake

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
FIND_PATH(
22
QHULL_DIR
3-
NAMES include/qhull/qhull.h
4-
PATHS /usr /usr/local
3+
# NAMES include/qhull/qhull.h
4+
# PATHS /usr /usr/local
5+
NAMES include/libqhull/libqhull.h
6+
PATHS /usr /usr/local /opt/jsk
57
DOC "the top directory of qhull")
68

79
IF ( QHULL_DIR )

lib/util/BVutil.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ extern "C" {
33
#if (defined __APPLE__)
44
#include <pcl/surface/qhull.h>
55
#else
6-
#include <qhull/qhull_a.h>
6+
#include <libqhull/qhull_a.h>
77
#endif
88
}
99
#include <hrpModel/Link.h>

rtc/CollisionDetector/SetupCollisionPair.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ extern "C" {
1919
#if (defined __APPLE__)
2020
#include <pcl/surface/qhull.h>
2121
#else
22-
#include <qhull/qhull_a.h>
22+
#include <libqhull/qhull_a.h>
2323
#endif
2424
}
2525

rtc/CollisionDetector/vclip_1.0/src/PolyTree.C

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ extern "C" {
6161
#if (defined __APPLE__)
6262
#include <pcl/surface/qhull.h>
6363
#else
64-
#include "qhull/qhull_a.h"
64+
#include "libqhull/qhull_a.h"
6565
#endif
6666
}
6767
//char qh_version[] = "vclip 1.0";

0 commit comments

Comments
 (0)