-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
TopoMap
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ ttk_add_base_library(dimensionReduction | |
DimensionReduction.h | ||
DEPENDS | ||
triangulation | ||
topoMap | ||
) | ||
|
||
install( | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
ttk_add_base_library(topoMap | ||
SOURCES | ||
TopoMap.cpp | ||
HEADERS | ||
TopoMap.h | ||
DEPENDS | ||
geometry | ||
unionFind | ||
) | ||
|
||
if(TTK_ENABLE_QHULL) | ||
if (Qhull_FOUND) | ||
target_link_libraries(topoMap PUBLIC Qhull::qhullcpp) | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
julien-tierny
Author
Collaborator
|
||
target_link_libraries(topoMap PUBLIC Qhull::qhull_r) | ||
target_compile_definitions(topoMap PUBLIC Qhull_FOUND) | ||
endif() | ||
target_compile_definitions(topoMap PUBLIC TTK_ENABLE_QHULL) | ||
endif() | ||
|
||
|
This introduced a generate error on my setup.
I have qhull installed system wide:
and this leads to the following cmake message: