From 66976723b68eaf653c470d09761c3851cb07271e Mon Sep 17 00:00:00 2001 From: psc Date: Thu, 13 Jun 2024 18:23:24 -0400 Subject: [PATCH] Included thermal crack in CMakeLists --- examples/thermomechanics/CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/examples/thermomechanics/CMakeLists.txt b/examples/thermomechanics/CMakeLists.txt index 84788a90..73a932b3 100644 --- a/examples/thermomechanics/CMakeLists.txt +++ b/examples/thermomechanics/CMakeLists.txt @@ -1,3 +1,7 @@ add_executable(ThermalDeformation thermal_deformation.cpp) target_link_libraries(ThermalDeformation LINK_PUBLIC CabanaPD) -install(TARGETS ThermalDeformation DESTINATION ${CMAKE_INSTALL_BINDIR}) + +add_executable(ThermalCrack thermal_crack.cpp) +target_link_libraries(ThermalCrack LINK_PUBLIC CabanaPD) + +install(TARGETS ThermalDeformation ThermalCrack DESTINATION ${CMAKE_INSTALL_BINDIR})