Skip to content
Snippets Groups Projects
Select Git revision
  • 432621f227fd92753723e7bddd6bcdba24b3574c
  • main default protected
  • 16-include-advection-into-upstream-version
  • ml/refactor-simulation-grid
  • sh/2D-BTCS-Optimizations
  • sh/rowmajor-inplace
  • ml/sycl-impl
  • ml/restructure-api
  • stenheimbrodt-praktikum
  • ml/add-verbosity
  • fixed-point
  • improve_openmp
  • v0.4.2
  • v0.4.1
  • v0.4
  • hand-in-hp
  • v0.3
  • v0.2
  • v0.1
19 results

CMakeLists.txt

Blame
  • CMakeLists.txt 1.01 KiB
    add_executable(FTCS_1D_proto_example FTCS_1D_proto_example.cpp)
    add_executable(FTCS_2D_proto_example FTCS_2D_proto_example.cpp)
    add_executable(BTCS_1D_proto_example BTCS_1D_proto_example.cpp)
    add_executable(BTCS_2D_proto_example BTCS_2D_proto_example.cpp)
    add_executable(CRNI_2D_proto_example CRNI_2D_proto_example.cpp)
    add_executable(reference-FTCS_2D_closed reference-FTCS_2D_closed.cpp)
    add_executable(profiling_openmp profiling_openmp.cpp)
    
    target_link_libraries(FTCS_1D_proto_example tug)
    target_link_libraries(FTCS_2D_proto_example tug)
    target_link_libraries(BTCS_1D_proto_example tug)
    target_link_libraries(BTCS_2D_proto_example tug)
    target_link_libraries(CRNI_2D_proto_example tug)
    target_link_libraries(reference-FTCS_2D_closed tug)
    target_link_libraries(profiling_openmp tug)
    
    add_executable(FTCS_2D_proto_example_mdl FTCS_2D_proto_example_mdl.cpp)
    add_executable(FTCS_2D_proto_closed_mdl FTCS_2D_proto_closed_mdl.cpp)
    target_link_libraries(FTCS_2D_proto_closed_mdl tug)
    target_link_libraries(FTCS_2D_proto_example_mdl tug)