Skip to content
Snippets Groups Projects
Select Git revision
  • 595442126488f97669aa48e3636a1fd5eafbb93f
  • develop default protected
  • feature/kinetic-schemes
  • feature/reconstruction
  • feature/local-dt-fsi
  • feature/composite-scheme-sources
  • feature/composite-scheme-other-fluxes
  • feature/serraille
  • feature/variational-hydro
  • feature/composite-scheme
  • hyperplastic
  • feature/polynomials
  • feature/gks
  • feature/implicit-solver-o2
  • feature/coupling_module
  • feature/implicit-solver
  • feature/merge-local-dt-fsi
  • master protected
  • feature/escobar-smoother
  • feature/hypoelasticity-clean
  • feature/hypoelasticity
  • v0.5.0 protected
  • v0.4.1 protected
  • v0.4.0 protected
  • v0.3.0 protected
  • v0.2.0 protected
  • v0.1.0 protected
  • Kidder
  • v0.0.4 protected
  • v0.0.3 protected
  • v0.0.2 protected
  • v0 protected
  • v0.0.1 protected
33 results

CMakeLists.txt

Blame
  • CMakeLists.txt 507 B
    include_directories("${CATCH_INCLUDE_PATH}")
    include_directories("${PASTIS_BINARY_DIR}/src/utils")
    set(EXECUTABLE_OUTPUT_PATH ${PASTIS_BINARY_DIR})
    
    add_executable (unit_tests
      test_main.cpp
      test_ItemType.cpp
      test_PastisAssert.cpp
      test_RevisionInfo.cpp
      test_TinyMatrix.cpp
      test_TinyVector.cpp
      )
    
    target_include_directories(Catch INTERFACE ${CATCH_INCLUDE_DIR})
    
    target_link_libraries (unit_tests
      PastisUtils
      Catch
      )
    
    enable_testing()
    
    #parse catch tests
    ParseAndAddCatchTests(unit_tests)