Skip to content
Snippets Groups Projects
Commit f018faaa authored by Arnaud Billon's avatar Arnaud Billon :speech_balloon:
Browse files

[refactor] liblas Interface Library

parent e2524b9d
No related branches found
No related tags found
1 merge request!330[refactor] liblas Interface Library
Pipeline #275028 failed
Pipeline: LidarView

#275029

    ......@@ -61,8 +61,10 @@ endif()
    find_library(liblas_LIBRARY ${LASNAME} DOC "liblas library")
    find_path(liblas_INCLUDE_DIR liblas/version.hpp DOC "liblas include directory")
    list(APPEND LIDARPLUGIN_DEPS_INCLUDE_DIRS ${liblas_INCLUDE_DIR})
    list(APPEND LIDARPLUGIN_DEPS ${liblas_LIBRARY})
    add_library(liblas INTERFACE)
    target_link_libraries (liblas INTERFACE ${liblas_LIBRARY})
    target_include_directories(liblas INTERFACE ${liblas_INCLUDE_DIR})
    list(APPEND LIDARPLUGIN_DEPS liblas)
    #--------------------------------------
    # Eigen dependency
    #--------------------------------------
    ......
    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