CMakeLists.txt 738 B

123456789101112131415161718192021222324252627
  1. # Windows only
  2. if( WIN32 )
  3. option( PLUGIN_IO_QLAS_FWF "Check to install qLAS FWF I/O plugin (deprecated, prefer using qLAS I/O now)" OFF )
  4. if( PLUGIN_IO_QLAS_FWF )
  5. message( WARNING "The qLAS_FWF plugin is now deprecated, prefer using qLAS instead" )
  6. #CloudCompare LAS FWF (i.e. version >= 1.3) I/O plugin
  7. project( QLAS_FWF_IO_PLUGIN )
  8. AddPlugin( NAME ${PROJECT_NAME} TYPE io )
  9. add_subdirectory( include )
  10. add_subdirectory( src )
  11. add_subdirectory( ui )
  12. # Uses headers from the qPDALIO plugin...
  13. target_include_directories( ${PROJECT_NAME}
  14. PRIVATE
  15. "${CMAKE_CURRENT_SOURCE_DIR}/../qPDALIO/include"
  16. )
  17. include( cmake/LASLibSupport.cmake )
  18. target_link_LASLib( ${PROJECT_NAME} )
  19. endif()
  20. endif()