You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
453 B
CMake
12 lines
453 B
CMake
include_directories("${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_INCLUDEDIR}/${mod_dir_tail}")
|
|
|
|
add_executable(psb_d_pde2d psb_d_pde2d.f90)
|
|
add_executable(psb_d_pde3d psb_d_pde3d.f90)
|
|
add_executable(psb_s_pde2d psb_s_pde2d.f90)
|
|
add_executable(psb_s_pde3d psb_s_pde3d.f90)
|
|
|
|
target_link_libraries(psb_d_pde2d krylov util)
|
|
target_link_libraries(psb_d_pde3d krylov util)
|
|
target_link_libraries(psb_s_pde2d krylov util)
|
|
target_link_libraries(psb_s_pde3d krylov util)
|