Skip to content
Snippets Groups Projects
Commit 5f033152 authored by William F Godoy's avatar William F Godoy
Browse files

Made changes to cmake

parent 90dbed8b
No related branches found
No related tags found
1 merge request!219Implemented Transform class API, and BZip2, Zfp wrappers
...@@ -6,14 +6,14 @@ ...@@ -6,14 +6,14 @@
if(ADIOS2_HAVE_BZip2) if(ADIOS2_HAVE_BZip2)
add_executable(TestBZip2Wrapper TestBZip2Wrapper.cpp) add_executable(TestBZip2Wrapper TestBZip2Wrapper.cpp)
target_link_libraries(TestBZip2Wrapper adios2 gtest gtest_main ${BZIP2_LIBRARIES}) target_link_libraries(TestBZip2Wrapper adios2 gtest gtest_main)
gtest_add_tests(TARGET TestBZip2Wrapper ${BZIP2_LIBRARIES}) gtest_add_tests(TARGET TestBZip2Wrapper)
endif() endif()
if(ADIOS2_HAVE_ZFP) if(ADIOS2_HAVE_ZFP)
add_executable(TestZfpWrapper TestZfpWrapper.cpp) add_executable(TestZfpWrapper TestZfpWrapper.cpp)
target_link_libraries(TestZfpWrapper adios2 gtest gtest_main zfp::zfp) target_link_libraries(TestZfpWrapper adios2 gtest gtest_main)
gtest_add_tests(TARGET TestZfpWrapper zfp::zfp) gtest_add_tests(TARGET TestZfpWrapper)
endif() endif()
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment