8 lines
269 B
CMake
8 lines
269 B
CMake
set(CMAKE_BuilD_TYPE Release)
|
|
|
|
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
|
|
|
add_executable(toy_homotopy toy_homotopy.cpp)
|
|
target_link_libraries(toy_homotopy PRIVATE hccd spdlog::spdlog Eigen3::Eigen)
|
|
target_include_directories(toy_homotopy PRIVATE hccd lib/argparse/include)
|