From b9039f124c010b6f10026e9f5403c94199fcea74 Mon Sep 17 00:00:00 2001
From: lintao <lintao51@gmail.com>
Date: Wed, 23 Dec 2020 00:17:56 +0800
Subject: [PATCH] WIP: migrate DetSimAna.

---
 Simulation/CMakeLists.txt           |  2 +-
 Simulation/DetSimAna/CMakeLists.txt | 43 ++++++++---------------------
 2 files changed, 13 insertions(+), 32 deletions(-)

diff --git a/Simulation/CMakeLists.txt b/Simulation/CMakeLists.txt
index 61b94702..82699412 100644
--- a/Simulation/CMakeLists.txt
+++ b/Simulation/CMakeLists.txt
@@ -1,5 +1,5 @@
 
-#add_subdirectory(DetSimAna)
+add_subdirectory(DetSimAna)
 add_subdirectory(DetSimCore)
 #add_subdirectory(DetSimDedx)
 #add_subdirectory(DetSimFastModel)
diff --git a/Simulation/DetSimAna/CMakeLists.txt b/Simulation/DetSimAna/CMakeLists.txt
index e0c9aca5..242dbc5a 100644
--- a/Simulation/DetSimAna/CMakeLists.txt
+++ b/Simulation/DetSimAna/CMakeLists.txt
@@ -1,44 +1,25 @@
 
-gaudi_subdir(DetSimAna v0r0)
-
-gaudi_depends_on_subdirs(
-    FWCore
-    Simulation/DetSimInterface
-)
-
 find_package(Geant4 REQUIRED ui_all vis_all)
 include(${Geant4_USE_FILE})
 find_package(DD4hep COMPONENTS DDG4 REQUIRED)
 
 # For EDM & I/O
-find_package(podio REQUIRED)
 find_package(EDM4HEP REQUIRED)
-# find_package(LCIO REQUIRED)
 
 set(DetSimAna_srcs
-#    src/ExampleAnaElemTool.cpp
     src/Edm4hepWriterAnaElemTool.cpp
 )
-message("podio_LIBRARIES: ${podio_LIBRARIES}")
-gaudi_add_module(DetSimAna ${DetSimAna_srcs}
-    INCLUDE_DIRS
-      # DetSimInterface
-      # FWCore
-      # DD4hep
-      # GaudiKernel
-      # Geant4 
-      # ${plcio_INCLUDE_DIRS}
-      # ${podio_INCLUDE_DIRS}
-    LINK_LIBRARIES
-      # DetSimInterface
-      # FWCore
-      DD4hep
-      ${DD4hep_COMPONENT_LIBRARIES} 
-      GaudiKernel
-      # Geant4
 
-      -Wl,--no-as-needed 
-      EDM4HEP::edm4hep EDM4HEP::edm4hepDict
-      -Wl,--as-needed 
-      # ${podio_LIBRARIES}
+gaudi_add_module(DetSimAna
+                 SOURCES ${DetSimAna_srcs}
+                 LINK DetSimInterface
+                      ${DD4hep_COMPONENT_LIBRARIES} 
+                      Gaudi::GaudiKernel
+                      EDM4HEP::edm4hep EDM4HEP::edm4hepDict
 )
+
+install(TARGETS DetSimAna
+  EXPORT CEPCSWTargets
+  RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}" COMPONENT bin
+  LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}" COMPONENT shlib
+  COMPONENT dev)
-- 
GitLab