Browse Source

remove unused mosek linking in bbw tut

Alec Jacobson 5 years ago
parent
commit
c60a948e7d

+ 0 - 3
tutorial/403_BoundedBiharmonicWeights/CMakeLists.txt

@@ -3,6 +3,3 @@ project(${PROJECT_NAME})
 
 add_executable(${PROJECT_NAME} main.cpp)
 target_link_libraries(${PROJECT_NAME} igl::core igl::opengl igl::opengl_glfw tutorials)
-if(TARGET igl::mosek)
-  target_link_libraries(${PROJECT_NAME} igl::mosek)
-endif()

+ 0 - 7
tutorial/403_BoundedBiharmonicWeights/main.cpp

@@ -1,10 +1,4 @@
 // Because of Mosek complications, we don't use static library if Mosek is used.
-#ifdef LIBIGL_WITH_MOSEK
-#ifdef IGL_STATIC_LIBRARY
-#undef IGL_STATIC_LIBRARY
-#endif
-#endif
-
 #include <igl/boundary_conditions.h>
 #include <igl/colon.h>
 #include <igl/column_to_quats.h>
@@ -19,7 +13,6 @@
 #include <igl/readTGF.h>
 #include <igl/opengl/glfw/Viewer.h>
 #include <igl/bbw.h>
-//#include <igl/embree/bone_heat.h>
 
 #include <Eigen/Geometry>
 #include <Eigen/StdVector>