| 123456789101112131415161718192021222324252627 |
- # Windows only
- if( WIN32 )
- option( PLUGIN_IO_QLAS_FWF "Check to install qLAS FWF I/O plugin (deprecated, prefer using qLAS I/O now)" OFF )
-
- if( PLUGIN_IO_QLAS_FWF )
- message( WARNING "The qLAS_FWF plugin is now deprecated, prefer using qLAS instead" )
-
- #CloudCompare LAS FWF (i.e. version >= 1.3) I/O plugin
- project( QLAS_FWF_IO_PLUGIN )
-
- AddPlugin( NAME ${PROJECT_NAME} TYPE io )
- add_subdirectory( include )
- add_subdirectory( src )
- add_subdirectory( ui )
-
- # Uses headers from the qPDALIO plugin...
- target_include_directories( ${PROJECT_NAME}
- PRIVATE
- "${CMAKE_CURRENT_SOURCE_DIR}/../qPDALIO/include"
- )
-
- include( cmake/LASLibSupport.cmake )
-
- target_link_LASLib( ${PROJECT_NAME} )
- endif()
- endif()
|