File tree 4 files changed +19
-5
lines changed
4 files changed +19
-5
lines changed Original file line number Diff line number Diff line change 1
- FIND_PATH (
2
- QHULL_DIR
3
- NAMES include /qhull/qhull.h
4
- PATHS /usr /usr/local
5
- DOC "the top directory of qhull" )
1
+ IF (QNXNTO)
2
+ FIND_PATH (
3
+ QHULL_DIR
4
+ NAMES include /libqhull/libqhull.h
5
+ PATHS /usr /usr/local /opt/jsk
6
+ DOC "the top directory of qhull" )
7
+ ELSE (QNXNTO)
8
+ FIND_PATH (
9
+ QHULL_DIR
10
+ NAMES include /qhull/qhull.h
11
+ PATHS /usr /usr/local
12
+ DOC "the top directory of qhull" )
13
+ ENDIF (QNXNTO)
6
14
7
15
IF ( QHULL_DIR )
8
16
MESSAGE (STATUS "Found Qhull in ${QHULL_DIR} " )
Original file line number Diff line number Diff line change 2
2
extern " C" {
3
3
#if (defined __APPLE__)
4
4
#include < pcl/surface/qhull.h>
5
+ #elif (defined __QNX__)
6
+ #include < libqhull/qhull_a.h>
5
7
#else
6
8
#include < qhull/qhull_a.h>
7
9
#endif
Original file line number Diff line number Diff line change 18
18
extern " C" {
19
19
#if (defined __APPLE__)
20
20
#include < pcl/surface/qhull.h>
21
+ #elif (defined __QNX__)
22
+ #include < libqhull/qhull_a.h>
21
23
#else
22
24
#include < qhull/qhull_a.h>
23
25
#endif
Original file line number Diff line number Diff line change @@ -60,6 +60,8 @@ using namespace Vclip;
60
60
extern "C" {
61
61
#if (defined __APPLE__ )
62
62
#include <pcl/surface/qhull.h>
63
+ #elif (defined __QNX__ )
64
+ #include "libqhull/qhull_a.h"
63
65
#else
64
66
#include "qhull/qhull_a.h"
65
67
#endif
You can’t perform that action at this time.
0 commit comments