File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 1- cmake_minimum_required (VERSION 3.25 )
1+ cmake_minimum_required (VERSION 3.30 )
22project (PennerOptimization)
33
44set (CMAKE_CXX_STANDARD 17)
55set (CMAKE_CXX_STANDARD_REQUIRED ON )
66
77add_compile_options (-fPIC)
8+ add_compile_options (-Wno-register)
89set (DIR_EXT "${CMAKE_CURRENT_SOURCE_DIR} /ext" )
910
1011# Set options if top level
@@ -34,8 +35,6 @@ endif()
3435
3536list (PREPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR} /cmake)
3637
37- include (eigen)
38-
3938# Optionally get multiprecision libraries
4039if (USE_MULTIPRECISION)
4140 # Turning this on activates mpfr in the conformal code
Original file line number Diff line number Diff line change @@ -7,5 +7,6 @@ FetchContent_Declare(
77 geometry-central
88 SYSTEM
99 GIT_REPOSITORY https://github.com/nmwsharp/geometry-central.git
10+ GIT_TAG 03f198748d263cea3faa040c8a399d59c38d67bc
1011)
1112FetchContent_MakeAvailable(geometry-central)
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ add_library(PennerUtilLib
1414)
1515target_include_directories (PennerUtilLib PUBLIC ../../include /util)
1616target_link_libraries (PennerUtilLib PUBLIC
17- Eigen3::Eigen
1817 igl::core
1918 igl::predicates
2019 spdlog::spdlog
You can’t perform that action at this time.
0 commit comments