Guest User

Untitled

a guest
Jan 23rd, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. include(CMakeDependentOption)
  2.  
  3. cmake_dependent_option(MFEM_USE_ADIOS
  4. "Enable ADIOS support" ON
  5. "NOT (CMAKE_VERSION VERSION_LESS 3.0)" OFF
  6. )
  7. if(MFEM_USE_ADIOS)
  8. find_package(ADIOS2 REQUIRED)
  9. endif()
  10.  
  11. target_link_libraries(foo PRIVATE adios2::adios2)
Add Comment
Please, Sign In to add comment