Skip to content

Commit

Permalink
Fix ZFP and SZ Fortran CMake errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Chuck Atkins committed Sep 18, 2019
1 parent 6ad94e1 commit 7b52852
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
11 changes: 2 additions & 9 deletions testing/adios2/bindings/fortran/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,8 @@ if(mpi)
fortran_add_test_helper(BPWriteMemorySelectionRead2D TRUE)
fortran_add_test_helper(BPWriteMemorySelectionRead3D TRUE)
fortran_add_test_helper(NullEngine TRUE)

if(ADIOS2_HAVE_SZ)
fortran_add_test_helper(BPWriteReadSZ2D TRUE)
fortran_add_test_helper(BPWriteReadSZ3D TRUE)
endif()

if(ADIOS2_HAVE_ZFP)
fortran_add_test_helper(BPWriteReadZfp2D TRUE)
endif()

add_subdirectory(operation)

# F2C
add_executable(Test.Bindings.Fortran.F2C.BPReadFBlocks
Expand Down
8 changes: 8 additions & 0 deletions testing/adios2/bindings/fortran/operation/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
if(ADIOS2_HAVE_SZ)
fortran_add_test_helper(BPWriteReadSZ2D TRUE)
fortran_add_test_helper(BPWriteReadSZ3D TRUE)
endif()

if(ADIOS2_HAVE_ZFP)
fortran_add_test_helper(BPWriteReadZfp2D TRUE)
endif()

0 comments on commit 7b52852

Please sign in to comment.