target_libraries.cmake 339 B

123456789101112131415
  1. #
  2. # See CMake/ctkFunctionGetTargetLibraries.cmake
  3. #
  4. # This file should list the libraries required to build the current CTK libraries
  5. #
  6. set(target_libraries
  7. VTK_LIBRARIES
  8. CTKWidgets
  9. CTKVisualizationVTKCore
  10. )
  11. if (CTK_QT_VERSION VERSION_GREATER "4")
  12. list(APPEND target_libraries Qt5Network_LIBRARIES Qt5WebKit_LIBRARIES)
  13. endif()