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.
17 lines
388 B
17 lines
388 B
2 years ago
|
# 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)
|