From ddd4ac1dd733b8aed6e987079c62ecec596cb473 Mon Sep 17 00:00:00 2001
From: Moritz Kiehn <msmk@cern.ch>
Date: Fri, 25 Oct 2019 14:14:39 +0200
Subject: [PATCH] cmake: rename ActsIdentificationPlugin for consistency

---
 Plugins/Identification/CMakeLists.txt | 8 ++++----
 Plugins/TGeo/CMakeLists.txt           | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/Plugins/Identification/CMakeLists.txt b/Plugins/Identification/CMakeLists.txt
index e41671baf..46cff4c3d 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 8da242517..8bc50fede 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
-- 
GitLab