Skip to content
Snippets Groups Projects
Verified Commit 296735c0 authored by Timm Fitschen's avatar Timm Fitschen
Browse files

WIP: pipeline

parent 59865607
Branches
Tags
No related merge requests found
Pipeline #9568 passed
Pipeline: caosdb-cppinttest

#9569

    ...@@ -219,6 +219,7 @@ install( ...@@ -219,6 +219,7 @@ install(
    # install(EXPORT ...) will install the information about an export. Here, we # install(EXPORT ...) will install the information about an export. Here, we
    # save it to a file {$libcaosdb_LIB_DEST}/libcaosdbTargets.cmake and prepend # save it to a file {$libcaosdb_LIB_DEST}/libcaosdbTargets.cmake and prepend
    # everything inside libcaosdbTargets with the namespace libcaosdb::. # everything inside libcaosdbTargets with the namespace libcaosdb::.
    set(libcaosdb_CMAKE_DEST "${libcaosdb_LIB_DEST}/cmake/caosdb")
    install( install(
    # The export we want to save (matches name defined above containing the # The export we want to save (matches name defined above containing the
    # install targets) # install targets)
    ...@@ -229,7 +230,7 @@ install( ...@@ -229,7 +230,7 @@ install(
    # will use caosdb::caosdb) # will use caosdb::caosdb)
    NAMESPACE caosdb:: NAMESPACE caosdb::
    # where to place the resulting file (here, we're putting it with the library) # where to place the resulting file (here, we're putting it with the library)
    DESTINATION ${libcaosdb_LIB_DEST} DESTINATION ${libcaosdb_CMAKE_DEST}
    ) )
    ## install(FILES ...) simply puts files in a certain place with certain ## install(FILES ...) simply puts files in a certain place with certain
    ...@@ -238,7 +239,7 @@ install(FILES ${libcaosdb_INCL} DESTINATION ${libcaosdb_INCLUDE_DEST}) ...@@ -238,7 +239,7 @@ install(FILES ${libcaosdb_INCL} DESTINATION ${libcaosdb_INCLUDE_DEST})
    install(FILES ${hw_grpc_hdrs} ${hw_proto_hdrs} install(FILES ${hw_grpc_hdrs} ${hw_proto_hdrs}
    DESTINATION ${libcaosdb_INCLUDE_DEST}/${hw_hdrs_path}) DESTINATION ${libcaosdb_INCLUDE_DEST}/${hw_hdrs_path})
    install(FILES ${PROJECT_SOURCE_DIR}/caosdbConfig.cmake install(FILES ${PROJECT_SOURCE_DIR}/caosdbConfig.cmake
    DESTINATION ${libcaosdb_LIB_DEST}) DESTINATION ${libcaosdb_CMAKE_DEST})
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment