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 7, 2019
1 parent 472fbd7 commit 36951c4
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
@@ -1,6 +1,6 @@
#include <iostream>
extern "C" {
#include <qhull/qhull_a.h>
#include <libqhull/qhull_a.h>
}
#include <hrpModel/Link.h>
#include "BVutil.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 @@ -16,7 +16,7 @@
#include <hrpCollision/ColdetModel.h>
#include "CollisionDetector.h"
extern "C" {
#include <qhull/qhull_a.h>
#include <libqhull/qhull_a.h>
}

#define deg2rad(x) ((x)*M_PI/180)
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 @@ -58,7 +58,7 @@ using namespace Vclip;

#if QHULL
extern "C" {
#include "qhull/qhull_a.h"
#include "libqhull/qhull_a.h"
}
//char qh_version[] = "vclip 1.0";
#endif
Expand Down

0 comments on commit 36951c4

Please sign in to comment.