diff --git a/Plugins/Identification/CMakeLists.txt b/Plugins/Identification/CMakeLists.txt index e41671baf45b60afe52fdf2ed6f32089a60aef47..46cff4c3d0435a16652c0fa647735a845048775c 100644 --- a/Plugins/Identification/CMakeLists.txt +++ b/Plugins/Identification/CMakeLists.txt @@ -1,12 +1,12 @@ -add_library(IdentificationPlugin INTERFACE) +add_library(ActsIdentificationPlugin INTERFACE) target_include_directories( - IdentificationPlugin + ActsIdentificationPlugin INTERFACE $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include> $<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>) -target_link_libraries(IdentificationPlugin INTERFACE ActsCore) +target_link_libraries(ActsIdentificationPlugin INTERFACE ActsCore) install( - TARGETS IdentificationPlugin + TARGETS ActsIdentificationPlugin EXPORT ActsIdentificationPluginTargets LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}) install( diff --git a/Plugins/TGeo/CMakeLists.txt b/Plugins/TGeo/CMakeLists.txt index 8da242517f0a3fd91552b5f8e0cb4e6855eb8a0f..8bc50fede54d29f4d944c42e46f125838639b415 100644 --- a/Plugins/TGeo/CMakeLists.txt +++ b/Plugins/TGeo/CMakeLists.txt @@ -6,7 +6,7 @@ target_include_directories( PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include> $<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>) target_link_libraries( - ActsTGeoPlugin PUBLIC ActsCore IdentificationPlugin ROOT::Geom) + ActsTGeoPlugin PUBLIC ActsCore ActsIdentificationPlugin ROOT::Geom) install( TARGETS ActsTGeoPlugin