You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

16 lines
388 B

# Static Simulation Project
add_library(StaticSim STATIC StaticSim.cpp)
# eigen
target_link_libraries(StaticSim PUBLIC Eigen3::Eigen)
# igl
include(libigl)
target_link_libraries(StaticSim PUBLIC
igl::core
igl::predicates
)
target_link_libraries(StaticSim PUBLIC spdlog::spdlog)
# IPC link static simulation
target_link_libraries(rigid_ipc_sim PUBLIC StaticSim)