Skip to content

Commit

Permalink
qhull is installed as libqhull in HIRONX
Browse files Browse the repository at this point in the history
  • Loading branch information
pazeshun committed Nov 13, 2019
1 parent 20c35b3 commit 9e9c5d3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions cmake_modules/FindQuickHull.cmake
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
FIND_PATH(
QHULL_DIR
NAMES include/qhull/qhull.h
PATHS /usr /usr/local
# NAMES include/qhull/qhull.h
# PATHS /usr /usr/local
NAMES include/libqhull/libqhull.h
PATHS /usr /usr/local /opt/jsk
DOC "the top directory of qhull")

IF ( QHULL_DIR )
Expand Down
2 changes: 1 addition & 1 deletion lib/util/BVutil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ extern "C" {
#if (defined __APPLE__)
#include <pcl/surface/qhull.h>
#else
#include <qhull/qhull_a.h>
#include <libqhull/qhull_a.h>
#endif
}
#include <hrpModel/Link.h>
Expand Down
2 changes: 1 addition & 1 deletion rtc/CollisionDetector/SetupCollisionPair.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ extern "C" {
#if (defined __APPLE__)
#include <pcl/surface/qhull.h>
#else
#include <qhull/qhull_a.h>
#include <libqhull/qhull_a.h>
#endif
}

Expand Down
2 changes: 1 addition & 1 deletion rtc/CollisionDetector/vclip_1.0/src/PolyTree.C
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ extern "C" {
#if (defined __APPLE__)
#include <pcl/surface/qhull.h>
#else
#include "qhull/qhull_a.h"
#include "libqhull/qhull_a.h"
#endif
}
//char qh_version[] = "vclip 1.0";
Expand Down

0 comments on commit 9e9c5d3

Please sign in to comment.