diff --git a/CMakeLists.txt b/CMakeLists.txt index 525f8db..4bc7a5d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -37,16 +37,6 @@ download_project(PROJ MYSOURCES endif() - -#Polyscope -download_project(PROJ POLYSCOPE - GIT_REPOSITORY https://github.com/nmwsharp/polyscope.git - GIT_TAG master - PREFIX ${CMAKE_CURRENT_SOURCE_DIR}/build/external/ - ${UPDATE_DISCONNECTED_IF_AVAILABLE} -) -add_subdirectory(${POLYSCOPE_SOURCE_DIR}) - #dlib download_project(PROJ DLIB GIT_REPOSITORY https://github.com/davisking/dlib.git @@ -69,9 +59,6 @@ file(GLOB EXT_SOURCES ${vcglib_devel_SOURCE_DIR}/wrap/ply/plylib.cpp) ##Eigen 3 NOTE: Eigen is required on the system the code is ran find_package(Eigen3 3.3 REQUIRED) -#OpenMP -find_package(OpenMP) - file(GLOB MYSOURCES ${MYSOURCES_SOURCE_DIR}/*.hpp ${MYSOURCES_SOURCE_DIR}/*.cpp ) #Add the project sources @@ -91,4 +78,4 @@ target_include_directories(${PROJECT_NAME} ) link_directories(${MYSOURCES_SOURCE_DIR}/boost_graph/libs) -target_link_libraries(${PROJECT_NAME} polyscope Eigen3::Eigen OpenMP::OpenMP_CXX matplot dlib::dlib) +target_link_libraries(${PROJECT_NAME} -static Eigen3::Eigen matplot dlib::dlib)