|
@@ -110,60 +110,15 @@ endif()
|
|
|
compile_igl_module("core" "" ${SOURCES_IGL})
|
|
|
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
+if(LIBIGL_WITH_ANTTWEAKBAR)
|
|
|
+ set(ANTTWEAKBAR_DIR "${LIBIGL_EXTERNAL}/AntTweakBar")
|
|
|
+ if(NOT TARGET AntTweakBar)
|
|
|
+ add_subdirectory("${ANTTWEAKBAR_DIR}" AntTweakBar)
|
|
|
+ endif()
|
|
|
+ compile_igl_module("anttweakbar" "")
|
|
|
+ target_link_libraries(igl_anttweakbar ${IGL_SCOPE} AntTweakBar)
|
|
|
+endif()
|
|
|
|
|
|
|
|
|
|
|
@@ -186,7 +141,9 @@ endif()
|
|
|
|
|
|
if(LIBIGL_WITH_COMISO)
|
|
|
compile_igl_module("comiso" "copyleft/")
|
|
|
- add_subdirectory(${LIBIGL_EXTERNAL}/CoMISo CoMISo)
|
|
|
+ if(NOT TARGET CoMISo)
|
|
|
+ add_subdirectory("${LIBIGL_EXTERNAL}/CoMISo" CoMISo)
|
|
|
+ endif()
|
|
|
target_link_libraries(igl_comiso ${IGL_SCOPE} CoMISo)
|
|
|
endif()
|
|
|
|